/* =====================
   CSS RESET & BASE RULES
   ===================== */
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;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #262b32;
  color: #F0F2F4;
  min-height: 100vh;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-sizing: border-box;
  overflow-x: hidden;
}
*,*:before,*:after {
  box-sizing: inherit;
}
a {
  color: #B7D56B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #FFFFFF;
}
img {
  max-width: 100%;
  display: block;
}

/* =======================
   TYPOGRAPHY
   ======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #ffffff;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

p, ul, ol, dl, li, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #E1E4E8;
  line-height: 1.6;
}
strong, b {
  color: #B7D56B;
  font-weight: 700;
}

/* Industrial font accent (Montserrat for display) */
.cta-primary, .container > nav > a, .mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =======================
   CONTAINERS & LAYOUT
   ======================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #21262B;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(40,44,52,0.12);
}
@media (max-width: 768px) {
  .section { padding: 32px 8px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(30,30,30,0.14);
  background: #242930;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1.5px solid #343941;
}
.card:hover {
  box-shadow: 0 5px 24px 0 rgba(72, 255, 164, 0.09);
  transform: translateY(-3px) scale(1.025);
  border-color: #B7D56B;
}

.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; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F7F8FA;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(40,40,40,0.09);
  border-left: 5px solid #B7D56B;
  color: #23272a;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card p {
  color: #18191a;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  color: #2B7240;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 6px;
}

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

.contact-info, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 16px 0 0 0;
}
.contact-info img, .contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .contact-info span, .contact-details span {font-size:0.95rem;}
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  align-items: center;
}
.trust-signals span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: #1d2126;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B7D56B;
  border: 1px solid #34453c;
}
.trust-signals img {
  width: 24px;
  height: 24px;
}

.faq-preview {
  background: #22252a;
  padding: 18px 20px;
  border-radius: 10px;
  margin-top: 16px;
}
.faq-preview h3 {
  color: #B7D56B;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.faq-preview dt {
  font-weight: bold;
  color: #B7D56B;
  margin-top: 14px;
}
.faq-preview dd {
  margin-left: 0;
  color: #F0F2F4;
  font-size: 1rem;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  width: 100%;
  background: #181c1f;
  box-shadow: 0 2px 18px 0 rgba(46,54,59,0.07);
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 0;
}
header img { height: 50px; }

nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
nav a {
  color: #B7D56B;
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 5px;
  transition: background 0.17s, color 0.2s;
}
nav a:hover, nav a.active {
  background: #2B7240;
  color: #FFF;
}

.cta-primary {
  background: #2B7240;
  color: #ffffff;
  border-radius: 6px;
  padding: 11px 24px;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(40,80,60,0.13);
  border: 0;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s, transform 0.17s;
  border: 1.5px solid #B7D56B;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #B7D56B;
  color: #222b20;
  transform: translateY(-2px) scale(1.02);
  border-color: #2B7240;
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #B7D56B;
  cursor: pointer;
  margin-left: 18px;
  z-index: 1102;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B7D56B;
}

/* =======================
   MOBILE MENU OVERLAY
   ======================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 28, 31, 0.98);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #B7D56B;
  font-size: 2rem;
  padding: 20px 24px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2B7240;
  outline: 2px solid #B7D56B;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #B7D56B;
  background: none;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 5px;
  padding: 11px 0;
  width: 100%;
  display: block;
  transition: color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #ffffff;
  background: none;
}

@media (max-width: 1050px) {
  nav {
    gap: 14px;
  }
}
@media (max-width: 880px) {
  nav {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  header .container img { height: 44px; }
}
@media (max-width: 850px) {
  nav { gap: 10px; }
}
@media (max-width: 820px) {
  nav { gap: 8px; }
  .cta-primary { margin-left: 5px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =======================
   FOOTER STYLES
   ======================= */
footer {
  background: #24282c;
  padding: 34px 0 0 0;
  margin-top: 84px;
  border-top: 2.5px solid #343941;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-menu, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.97rem;
  color: #E1E4E8;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #B7D56B;
  margin: 0 1px;
}
.footer-menu a:hover {
  color: #FFF;
}
.footer-menu {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  gap: 7px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #B7D56B;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-right: 20px;
}
.footer-contact img {
  height: 21px; width: 21px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  margin-top: 13px;
  color: #B7D56B;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-brand img {
  width: 30px; height: 30px;
  filter: grayscale(0.25) brightness(1.25);
}

@media (max-width: 600px) {
  .footer-contact {
    gap: 9px;
    flex-direction: column;
  }
  .footer-menu { gap: 4px; flex-direction: column; }
  .footer-contact span { margin-right: 0; }
  .footer-brand { gap: 7px; font-size: 0.95rem; }
}

/* =======================
   BUTTONS
   ======================= */
button, .cta-primary {
  border: none;
  outline: none;
}
button:focus, .cta-primary:focus {
  outline: 2px solid #2B7240;
  outline-offset: 2px;
}
/* All buttons standard look */
button, input[type="button"], input[type="submit"] {
  background: #2B7240;
  color: #fff;
  padding: 12px 26px;
  border-radius: 7px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.16s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #B7D56B;
  color: #232b23;
  transform: translateY(-1.5px) scale(1.018);
}

/* =======================
   TEXT/ICONS SECTIONS
   ======================= */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 17px;
}
.text-section h3 {
  font-size: 1.1rem;
  color: #B7D56B;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}
.text-section p {
  color: #E1E4E8;
}

ul, ol {
  margin: 8px 0 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style-position: inside;
}
li {
  color: #D1D6DA;
  font-size: 1rem;
}
ul li::marker, ol li::marker {
  color: #B7D56B;
}

ol {
  list-style-type: decimal;
}

/* ===============
   SPACING, GAPS
   =============== */
.section, .card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .text-image-section, .feature-item, .testimonial-card {
  gap: 20px;
}
.section {margin-bottom: 60px; padding: 40px 20px;}
.card-container {gap:24px;}
.card {margin-bottom:20px;}
.content-grid {gap:20px;}
.text-image-section {gap:30px;}
.testimonial-card {gap:20px;}
.feature-item {gap:15px;}

/* ===============
   RESPONSIVENESS
   =============== */
@media (max-width: 1160px) {
  .container { max-width: 98vw; padding: 0 10px; }
}
@media (max-width: 860px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.14rem; }
}
@media (max-width: 600px) {
  .section { padding: 22px 1px; }
  h1 { font-size: 1.1rem; }
  .container { padding: 0 1px; }
}

/* =======================
   MICRO-INTERACTIONS & SHADOWS
   ======================= */
.card, .testimonial-card, .section {
  transition: box-shadow 0.18s, border-color 0.23s, background 0.22s;
}
.card:hover {
  box-shadow: 0 4px 30px rgba(80,255,180,0.11);
  border-color: #B7D56B;
}
.cta-primary {
  transition: background 0.18s, color 0.17s, transform 0.18s;
}
.cta-primary:active {
  background: #87AA24;
  color: #222b20;
}

.testimonial-card:hover {
  box-shadow: 0 3px 18px rgba(90, 180, 60, 0.11);
  background: #EDF1E8;
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #202725;
  color: #F7F8FA;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 16px 0 rgba(8,14,18,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1400;
  gap: 12px;
  transition: transform 0.37s cubic-bezier(0.8,0,0.2,1), opacity 0.32s;
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner p {
  color: #F7F8FA;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 7px;
}
.cookie-consent-actions button {
  background: #B7D56B;
  color: #232B23;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 1.5px;
  box-shadow: 0 1px 5px rgba(40,40,40,0.11);
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-consent-actions button:hover {
  background: #2B7240;
  color: #fff;
}
.cookie-consent-actions .cookie-settings-btn {
  background: transparent;
  color: #B7D56B;
  border: 1.5px solid #B7D56B;
}
.cookie-consent-actions .cookie-settings-btn:hover {
  background: #B7D56B;
  color: #232B23;
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 110%);
  width: 97vw;
  max-width: 390px;
  background: #23282a;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 -4px 38px rgba(20,25,20,0.23);
  z-index: 1550;
  padding: 24px 22px 18px 22px;
  color: #F7F8FA;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.39s cubic-bezier(0.7,0,0.18,1), opacity 0.24s;
}
.cookie-modal.open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 {
  color: #B7D56B;
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid #324130;
  color: #E1E4E8;
}
.cookie-category input[type='checkbox'] {
  accent-color: #B7D56B;
  width: 16px;
  height: 16px;
}
.cookie-category.essential {
  color: #94a58c;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}
.cookie-modal-actions button {
  background: #2B7240;
  color: #fff;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border: none;
  box-shadow: 0 1px 6px rgba(30,30,30,0.13);
  cursor: pointer;
}
.cookie-modal-actions button:hover {
  background: #B7D56B;
  color: #232B23;
}

/* =======================
   INDUSTRIAL_MODERN EXTRAS
   ======================= */
.section {
  border: 2.5px solid #384244;
  background: linear-gradient(127deg, #23272A 85%, #262b32 100%);
  box-shadow: 0 3px 30px 0 rgba(8, 12, 18, 0.24), 0 1px 2px 0 rgba(33,37,38,0.09);
  /* metallic accent via border */
}
.card {
  border: 1.5px solid #424a4c;
  background: linear-gradient(127deg,#242930 92%,#333842 100%);
  box-shadow: 0 1px 4px 0 #101418, 0 4px 16px 0 rgba(50,55,60,0.11);
}
.card:hover {
  border-color: #B7D56B;
}

/* =======================
   SCROLLBARS & MISC
   ======================= */
::-webkit-scrollbar {
  width: 10px;
  background: #181c1f;
}
::-webkit-scrollbar-thumb {
  background: #23272a;
  border-radius: 7px;
  border: 2.5px solid #2B7240;
}

html {
  scroll-behavior: smooth;
}

/* =======================
   FORM ELEMENTS (if any)
   ======================= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.5px solid #2B7240;
  padding: 11px 16px;
  background: #23282c;
  color: #e3e8eb;
  margin-bottom: 13px;
  width: 100%;
  max-width: 415px;
  box-sizing: border-box;
  transition: border-color 0.17s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B7D56B;
  box-shadow: 0 1px 3px #B7D56B33;
  outline: none;
}

/* Accessibility focus style */
a:focus-visible, button:focus-visible {
  outline: 2.5px dashed #B7D56B;
  outline-offset: 1px;
}

/* ===============
   Hiding scrollbar on .mobile-menu when overlay is open
   =============== */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ===============
   Misc fixes
   =============== */
@media (max-width: 440px) {
  h1 { font-size: 1rem; }
  .cta-primary { font-size: 0.94rem; padding: 10px 12px; }
  .cookie-modal, .cookie-consent-banner { font-size: 0.95rem; padding: 17px 5px;}
}

/* Visual separator between list elements for industrial vibe */
ul > li, ol > li {
  border-left: 3.5px solid #343941;
  padding-left: 14px;
  margin-bottom: 4px;
  background: rgba(39, 41, 42, 0.08);
  border-radius: 4px;
}
ul > li:last-child, ol > li:last-child { margin-bottom: 0; }

/* Gallery tweaks (in case of gallery page in the future) */
.gallery-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.gallery-item { border-radius: 13px; overflow: hidden; background: #22262A; box-shadow: 0 2px 12px rgba(40,40,44,0.13); }

/* ===============
   Hide elements visually for a11y
   =============== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
