/* RESET & BASE STYLES */
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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #181B1B;
  color: #F6F4EE;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-image: url('../assets/bg-industrial-texture.png'); /* fallback if exists */
  background-size: cover;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: #F6F4EE;
  font-family: 'Montserrat', 'Arial Black', Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.15; }
h3 { font-size: 1.375rem; margin-bottom: 12px; line-height: 1.22; }
.subheadline {
  font-size: 1.125rem;
  color: #BABABA;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
}
strong, b {
  color: #8DC13A;
  font-weight: bold;
}
ul, ol {
  padding-left: 25px;
}
ul li, ol li {
  margin-bottom: 8px;
}
a {
  color: #8DC13A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5A9019;
  text-decoration: none;
}

/* FLEX CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(40,45,48,0.88);
  border-radius: 10px;
  box-shadow: 0 2px 18px 2px rgba(23,24,25,0.11);
}

/* HEADER + NAVIGATION */
header {
  width: 100%;
  background: #1a1c1e;
  border-bottom: 3px solid #2d2d2d;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.13);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img {
  height: 50px;
  width: auto;
  filter: grayscale(40%) contrast(1.2) brightness(0.93);
  transition: filter 0.25s;
}
.logo:hover img, .logo:focus img {
  filter: none;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
nav a {
  position: relative;
  color: #F6F4EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.06rem;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
nav a:after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: #8DC13A;
  opacity: 0;
  transition: opacity 0.2s;
}
nav a:hover, nav a:focus {
  color: #8DC13A;
}
nav a:hover:after, nav a:focus:after {
  opacity: 1;
}
.cta-btn.primary {
  background: linear-gradient(92deg, #26643B 0%, #39523A 100%);
  color: #F6F4EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(44,54,58,0.23);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 8px;
  text-decoration: none;
  display: inline-block;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #8DC13A;
  color: #222F22;
  box-shadow: 0 4px 15px 0 rgba(141,193,58,0.16);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #8DC13A;
  padding: 8px 13px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 1.5px 4px 0 rgba(20,30,30,0.13);
  transition: background 0.18s, color 0.14s;
  z-index: 120;
  display: none;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #8DC13A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,27,27, 0.98);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.48,.13,.44,.87);
  z-index: 130;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  box-shadow: 4px 0 18px 2px rgba(40,40,35,0.3);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 23px 24px 10px 0;
  font-size: 2.1rem;
  color: #8DC13A;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  transition: color 0.2s;
  padding: 4px;
}
.mobile-menu-close:focus {
  outline: 2px solid #8DC13A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding: 12px 36px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #F6F4EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.425rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.19s, background 0.16s;
  border-radius: 6px;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #202323;
  color: #8DC13A;
}

@media (max-width: 1050px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 72px 0 48px 0;
  background: #232626;
  border-radius: 0 0 35px 35px;
  box-shadow: 0 6px 30px 0 rgba(23,24,25,0.13);
  position: relative;
}
.hero .container {
  min-height: 340px;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
}
.hero h1 {
  color: #8DC13A;
  font-size: 2.7rem;
  letter-spacing: 0.03em;
}
.hero p {
  color: #BABABA;
  margin-bottom: 36px;
  font-size: 1.15rem;
}
@media (max-width: 640px){
  .hero {
    padding: 40px 0 24px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
  .hero h1 { font-size: 2.0rem; }
}

/* FLEX CARDS & FEATURE SECTIONS */
.feature-grid, .service-overview-grid, .service-teasers, .pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.feature, .service, .service-teaser, .product-option {
  background: #232626;
  border-radius: 14px;
  box-shadow: 0 3px 16px 3px rgba(36,46,48,0.14);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1.5px solid #393939;
  position: relative;
}
.feature:hover, .service:hover, .service-teaser:hover, .product-option:hover {
  box-shadow: 0 8px 40px 0 rgba(141,193,58, 0.10), 0 2px 8px 0 rgba(36,46,48,0.20);
  transform: translateY(-10px) scale(1.02);
  z-index: 2;
}
.feature img {
  width: 44px; height: 44px; margin-bottom: 6px;
  filter: grayscale(60%) brightness(1.1) contrast(1.2) drop-shadow(0px 2.5px 2.5px #222d2230);
}
.feature h3, .service h3, .service-teaser h3, .product-option h3 {
  color: #8DC13A;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.feature p, .service p, .service-teaser p, .product-option p {
  color: #DFDFDD;
  font-size: 1.02rem;
}
.service-teaser a, .service a {
  color: #5A9019;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.18s;
}
.service-teaser a:hover, .service a:hover {
  color: #8DC13A;
}

@media (max-width: 950px){
  .feature-grid, .service-overview-grid, .service-teasers, .pricing-table {
    gap: 18px;
  }
}
@media (max-width: 768px){
  .feature-grid, .service-overview-grid, .service-teasers, .pricing-table {
    flex-direction: column;
    gap: 24px;
  }
  .feature, .service, .service-teaser, .product-option {
    min-width: 0;
    width: 100%;
  }
}


/* BENEFIT + FACTS LISTS */
.benefit-list, .quick-facts {
  list-style: none;
  padding: 0 0 0 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-list li, .quick-facts li {
  padding-left: 23px;
  position: relative;
  color: #F6F4EE;
}
.benefit-list li:before, .quick-facts li:before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  background: #8DC13A;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 #283928cc;
}

/* PRICING TABLE */
.pricing-table {
  gap: 22px;
  justify-content: flex-start;
}
.product-option span {
  margin-top: 10px;
  color: #8DC13A;
  font-weight: bold;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CTA SECTION */
#cta {
  background: #242727;
  border-radius: 16px;
  box-shadow: 0 2px 14px 3px rgba(36,46,48,0.14);
  margin-bottom: 60px;
  padding: 48px 20px;
}
#cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
#cta h2 {
  color: #8DC13A;
  margin-bottom: 11px;
}

/* TEXT SECTION */
.text-section {
  margin-bottom: 28px;
  background: rgba(36,36,36,0.99);
  border-radius: 8px;
  padding: 26px 18px;
  box-shadow: 0 1.5px 6px rgba(16,22,14,0.13);
}
.text-section:last-child {
  margin-bottom: 0;
}

/* TESTIMONIALS */
#testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  margin-bottom: 20px;
  background: #F6F4EE;
  border-left: 5px solid #8DC13A;
  border-radius: 8px;
  box-shadow: 0 4px 19px 4px rgba(32,32,32,0.06);
}
.testimonial-card p {
  color: #2B2B2B;
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card span, .testimonial-card strong {
  color: #222C20;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-style: normal;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #1F2123;
  border-top: 3px solid #202323;
  color: #CBCBCB;
  font-size: 1rem;
  width: 100%;
}
.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 34px 20px 24px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.logo-footer img {
  height: 49px;
  width: auto;
  filter: grayscale(52%) brightness(0.98) contrast(1.23);
  transition: filter 0.2s;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: #8DC13A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  text-decoration: none;
  transition: opacity 0.15s, color 0.16s;
  opacity: 0.95;
}
.footer-menu a:hover {
  color: #bfdc7e;
  opacity: 1;
}
.footer-contact {
  margin-top: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #CBCBCB;
  font-size: 0.97rem;
  line-height: 1.73;
}
.footer-contact a {
  color: #8DC13A;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

/* FORM & BUTTON SHARED */
button, .cta-btn, input[type=submit], input[type=button] {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  transition: box-shadow 0.19s, background 0.17s, color 0.14s;
}
button:focus, .cta-btn:focus, input[type=submit]:focus {
  outline: 2px solid #8DC13A;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1b1e1c;
  color: #F6F4EE;
  box-shadow: 0 -4px 24px 0 #1c250a30;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px 24px 30px;
  z-index: 9000;
  font-size: 1.075rem;
  transition: transform 0.28s cubic-bezier(.39,.67,.47,.98), opacity 0.20s;
  border-top: 2.5px solid #8DC13A;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 2 1 0%;
  margin-right: 42px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-btn {
  border: none;
  padding: 11px 22px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  background: #8DC13A;
  color: #181B1B;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 1.2px 5px rgba(90,144,25,0.08);
  transition: background 0.17s, color 0.19s;
}
.cookie-btn.reject {
  background: #181B1B;
  color: #8DC13A;
  border: 1.8px solid #8DC13A;
}
.cookie-btn.settings {
  background: #232626;
  color: #C3C3C3;
  border: 1.8px solid #bbb;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #5A9019;
  color: #F6F4EE;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #303633;
  color: #8DC13A;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 20px;
    padding: 19px 10px 15px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-message {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* Cookie Consent Modal */
.cookie-modal-backdrop {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 26, 24, 0.94);
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  min-width: 320px;
  max-width: 98vw;
  background: #242727;
  color: #F6F4EE;
  border-radius: 16px;
  box-shadow: 0 8px 46px 12px rgba(44,61,43,0.27);
  padding: 37px 36px 30px 36px;
  z-index: 10100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.24s cubic-bezier(.62,.33,.54,.99);
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.00);
}
.cookie-modal h2 {
  color: #8DC13A;
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 22px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #212323;
  padding: 12px 15px;
  border-radius: 7px;
  font-size: 1.00rem;
}
.cookie-modal .category-row label {
  flex: 2 1 0%;
  color: #F6F4EE;
}
.cookie-modal .category-row input[type='checkbox'] {
  accent-color: #8DC13A;
  width: 23px; height: 23px;
}
.cookie-modal .category-row input[disabled] {
  opacity: 0.5;
}
.cookie-modal .category-row.essential label {
  color: #8DC13A;
}
.cookie-modal .close {
  position: absolute;
  top: 12px; right: 21px;
  color: #8DC13A;
  font-size: 1.65rem;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .close:focus {
  outline: 2px solid #8DC13A;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions .cookie-btn {
  min-width: 110px;
}
@media (max-width:520px) {
  .cookie-modal {
    min-width: 95vw;
    max-width: 100vw;
    padding: 17px 6vw 14px 6vw;
  }
}

/* MISC LAYOUTS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FORM/INPUTS */
input, textarea, select {
  background: #222826;
  color: #F6F4EE;
  border: 1.4px solid #38443F;
  border-radius: 6px;
  padding: 11px 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 17px;
  transition: border 0.17s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #8DC13A;
  box-shadow: 0 2px 8px 0 #8DC13A22;
  outline: none;
}

/* UTILITIES */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ANIMATIONS & TRANSITIONS */
button, .cta-btn, input[type=submit], a, .feature, .service, .service-teaser, .product-option, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: all 0.17s cubic-bezier(.18, .65, .45, 1.08);
}

/* SUPPORTING CONTRAST FOR TESTIMONIALS */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #131413 !important;
}

/* Hide scrollbar in mobile menu */
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* END */
