/* ----------------- RESET & 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, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #181E24;
  color: #F6F6F6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #74A57F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F6F6F6;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #FFF;
  text-shadow: 0 1px 2px rgba(24,36,51,0.15);
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 13px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232A2F;
  border-radius: 12px;
  box-shadow: 0 4px 32px 0 rgba(38,45,57,0.13);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1px solid #273240;
}
.card:hover {
  box-shadow: 0 8px 38px 0 rgba(24,36,51,0.19), 0 1.5px 3px 0 rgba(24,108,161,0.13);
  transform: translateY(-4px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6F6;
  color: #181E24;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(24,36,51,0.14);
  margin-bottom: 20px;
  min-width: 0;
  border-left: 6px solid #74A57F;
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 6px;
  color: #232A2F;
  line-height: 1.5;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-shadow: none;
}
.testimonial-card cite {
  display: block;
  font-size: 1rem;
  color: #186CA1;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ----------------- HEADER ----------------- */
header {
  background: #232A2F;
  box-shadow: 0 2px 12px 0 rgba(24,36,51,0.13);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
header img {
  height: 45px;
  width: auto;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F6F6F6;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  padding: 9px 0;
  position: relative;
  transition: color 0.17s;
}
header nav a:after {
  display: block;
  content: '';
  border-bottom: 2px solid #74A57F;
  transform: scaleX(0);
  transition: transform 0.18s;
  margin-top: 3px;
}
header nav a:hover:after, header nav a:focus:after {
  transform: scaleX(1);
}
header nav a:hover, header nav a:focus {
  color: #74A57F;
}
.btn-primary {
  background: linear-gradient(93deg, #186CA1 60%, #74A57F 100%);
  color: #FFF;
  border: none;
  border-radius: 27px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 36px;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(24,108,161,0.07);
  cursor: pointer;
  transition: background 0.25s, color 0.18s, transform .17s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(93deg, #74A57F 60%, #186CA1 100%);
  color: #181E24;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 3px 12px 0 rgba(24,36,51,0.12);
}
/* Hamburger icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F6F6F6;
  cursor: pointer;
  margin-left: 16px;
  z-index: 1300;
  transition: color 0.18s, background 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  color: #74A57F;
}

/* ----------------- MOBILE MENU ----------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,36,41,0.97);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.73,.05,.39,1.81);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F6F6F6;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1301;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #74A57F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-top: 60px;
  margin-left: 34px;
}
.mobile-nav a {
  color: #F6F6F6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: none;
  border-radius: 8px;
  padding: 14px 8px;
  min-width: 180px;
  transition: background 0.18s, color 0.17s;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #74A57F;
  background: rgba(24,108,161,0.09);
}

/* Responsive header */
@media (max-width: 992px) {
  header .container {
    gap: 14px;
  }
  header nav {
    gap: 11px;
  }
  .btn-primary {
    margin-left: 6px;
    padding: 12px 26px;
    font-size: 0.94rem;
  }
}
@media (max-width: 860px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
}

/* ----------------- MAIN LAYOUT & FLEXBOX COMPONENTS ----------------- */
main {
  min-height: 40vh;
  padding-bottom: 48px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    margin-bottom: 32px;
    padding: 26px 7px;
  }
}

/* Card & content layouts for industrial_modern */
.card {
  background: #21282D;
  border-radius: 14px;
  box-shadow: 0 4px 30px 0 rgba(24,36,51,0.16);
  border: 1.5px solid #323D48;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(116,165,127,0.22), 0 3px 10px 0 rgba(24,108,161,0.11);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #20262C;
  border-radius: 10px;
  border-left: 4px solid #186CA1;
  padding: 18px 14px 16px 20px;
}

/* Responsive flex directions */
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* List spacing in .text-section etc */
.text-section ul, .text-section ol {
  padding-left: 23px;
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1.045rem;
  color: #D4D5D7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.text-section strong {
  color: #74A57F;
}

/* -------------- FOOTER -------------- */
footer {
  background: #20262C;
  color: #CBD1D6;
  padding: 0 0 7px 0;
  box-shadow: 0 -3px 15px 0 rgba(24,36,51,0.09);
}
footer .container {
  padding: 24px 16px 6px; 
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 8px;
}
footer nav a {
  color: #74A57F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #F6F6F6;
}
footer .brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #A5ADB6;
}
footer .brand-info img {
  height: 36px;
  width: auto;
}
footer .contact-shortcut p {
  margin-bottom: 5px;
  font-size: 0.97rem;
  color: #CBD1D6;
}
footer .contact-shortcut a {
  color: #74A57F;
  transition: color .12s;
}
footer .contact-shortcut a:hover {
  color: #FFF;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}

/* -------------- FORM ELEMENTS -------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #232A2F;
  color: #F6F6F6;
  border-radius: 7px;
  padding: 10px;
  border: 1.2px solid #284357;
  margin-bottom: 16px;
  width: 100%;
  margin-top: 5px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #186CA1;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 7px;
  color: #CBD1D6;
}

/* -------------- COOKIE BANNER -------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 8000;
  background: #21282D;
  color: #F6F6F6;
  padding: 24px 12px 18px;
  box-shadow: 0 -2px 16px 0 rgba(24,36,51,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.23s, opacity 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(200%);
}
.cookie-banner__text {
  flex: 1;
  min-width: 180px;
  font-size: 1.1rem;
  line-height: 1.45;
  color: #CBD1D6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 20px;
  margin: 0 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, transform 0.18s;
  font-weight: 700;
}
.cookie-btn--accept {
  background: #74A57F;
  color: #181E24;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #186CA1;
  color: #F6F6F6;
}
.cookie-btn--reject {
  background: #232A2F;
  color: #F6F6F6;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #186CA1;
  color: #F6F6F6;
}
.cookie-btn--settings {
  background: transparent;
  color: #186CA1;
  border: 2px solid #74A57F;
  font-weight: 600;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  color: #74A57F;
  border-color: #186CA1;
  background: #181E24;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -40%) scale(1);
  z-index: 9000;
  background: #181E24;
  color: #F6F6F6;
  min-width: 320px;
  max-width: 94vw;
  width: 400px;
  border-radius: 16px;
  box-shadow: 0 6px 42px 0 rgba(24,36,51, 0.35);
  padding: 36px 28px 27px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.2s, transform 0.21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18%) scale(0.88);
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #74A57F;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-modal__section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-modal-label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap:10px;
  cursor: pointer;
}
/* Toggle switch style */
.cookie-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #283040;
  border-radius: 30px;
  transition: background .17s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #74A57F;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #F6F6F6;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(17px);
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
  min-width: 100px;
}
.cookie-modal__footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(30,34,40,0.7);
  z-index: 8500;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

/* -------------- SPACING & FLEXBOX LAYOUTS -------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensure spacing between main containers */
.section + .section, section + section, .container + .container {
  margin-top: 60px;
}
@media (max-width: 650px) {
  .section + .section, section + section, .container + .container {
    margin-top: 26px;
  }
}

/* -------------- TYPOGRAPHY & VISUAL HIERARCHY -------------- */
h1, h2, h3, h4, h5 {
  letter-spacing: 0.015em;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.18rem; }
@media (max-width: 512px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 { font-size: 1.07rem; }
}

/* -------------- BUTTONS -------------- */
.btn-primary {
  min-width: 140px;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  font-variant-caps: all-petite-caps;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: background 0.26s, color 0.15s, transform 0.18s, box-shadow 0.18s;
}
.btn-primary:active {
  transform: scale(0.97);
}

/* -------------- MICRO-INTERACTIONS & HOVERS -------------- */
.card, .btn-primary, .cookie-btn {
  transition: box-shadow 0.16s, transform 0.09s, background 0.16s, color 0.14s;
}
.card:active, .feature-item:active, .btn-primary:active {
  transform: scale(0.965);
}

/* ----------- SCROLLBAR STYLING FOR DARK UI ------------- */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #21282D;
  border-radius: 7px;
  border: 2px solid #181E24;
}
body::-webkit-scrollbar-track {
  background: #181E24;
}

/* -------------- MEDIA QUERIES FOR RESPONSIVE -------------- */
@media (max-width: 650px) {
  main, .container {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .btn-primary {
    font-size: 0.97rem;
    padding: 9px 17px;
  }
  .testimonial-card {
    font-size: 0.97rem;
    padding: 11px 4vw;
  }
}
@media (max-width: 400px) {
  .btn-primary {
    font-size: 0.89rem;
    padding: 7px 7vw;
  }
}

/* -------------- UTILITY CLASSES -------------- */
.hide {
  display: none !important;
}
.show {
  display: flex !important;
}

/* --------- BRAND COLOR / METALLIC ACCENTS (INDUSTRIAL MODERN) ------- */
::-moz-selection { background: #186CA1; color: #F6F6F6; }
::selection { background: #186CA1; color: #F6F6F6; }

/* Metallic line accents e.g. for section headings */
h2 {
  position: relative;
  padding-left: 16px;
}
h2:before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  height: 1.4em;
  width: 6px;
  border-radius: 2.7px;
  background: linear-gradient(120deg, #BCC6CC 60%, #74A57F 100%);
  opacity: 0.64;
}
@media (max-width: 720px) {
  h2 { padding-left: 7px; }
  h2:before { left: 0; top: 8px; width: 4px; }
}

/* ------ INDUSTRIAL FONTS EFFECT: OXYGEN fallback for metallic feel ------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* -------------- HELPERS -------------- */
.nowrap { white-space: nowrap; }
.light { color: #CBD1D6; }
.upper { text-transform: uppercase; letter-spacing: 0.045em; }
strong { font-weight: 600; }

/* ---------- Z-INDEX CONTEXTS ---------- */
header { z-index: 800; position: relative; }
.mobile-menu { z-index: 1200; }
.mobile-menu-toggle { z-index: 1300; }


/* -------- TRAP: Prevent overlapping on narrow screens --------- */
.container, .content-wrapper { min-width: 0; }
.card, .testimonial-card, .feature-item { min-width: 0; }

/* ----------------- END OF CSS ----------------- */
