/* ==========================================================  
   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;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1E2327;
  color: #E9E4DF;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a {
  color: #9DC4D0;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:focus,
a:hover {
  color: #E9E4DF;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

/* ==========================================================  
   TYPOGRAPHY – INDUSTRIAL MODERN  
========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #E9E4DF;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.3;
  text-transform: uppercase;
}
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  color: #9DC4D0;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 16px;
}

/* ==========================================================  
   LAYOUT & SECTIONS  
========================================================== */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34,66,95,0.92);
  border-radius: 11px;
  box-shadow: 0 3px 12px 0 rgba(46,53,61,0.12);
  position: relative;
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ----------------------------------------------------------
   FLEXBOX PATTERNS (per requirements)
---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #222C33;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,35,39,0.14);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 270px;
  max-width: 390px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #3B4B57;
  transition: box-shadow 0.3s, border-color 0.2s;
}
.card:hover {
  border-color: #9DC4D0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.21);
}
.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) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ----------------------------------------------------------
   SPECIAL CARDS & FLEXBLOCK ELEMENTS
---------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 28px;
  background: #ECE9E6;
  color: #222C33;
  border-radius: 9px;
  box-shadow: 0 1.5px 8px rgba(34,66,95,0.10);
  font-size: 1.1rem;
  margin-bottom: 20px;
  margin-right: 0;
  border-left: 6px solid #22425F;
  transition: box-shadow 0.25s, background 0.2s;
}
.testimonial-card strong {
  color: #22425F;
  font-size: 1.01em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  background: #e2ded8;
  box-shadow: 0 4px 14px rgba(30,35,39,0.17);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------------------------
   BUTTONS: CTA, LINKS & MICRO-INTERACTIONS
---------------------------------------------------------- */
.cta, button.cta {
  display: inline-flex;
  align-items: center;
  padding: 13px 36px;
  background: linear-gradient(93deg, #22425F 82%, #444f59 100%);
  color: #E9E4DF;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 1.5px 4px rgba(34,66,95,0.15);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
}
.cta:focus,
.cta:hover,
button.cta:focus,
button.cta:hover {
  background: linear-gradient(90deg, #9DC4D0 10%, #22425F 90%);
  color: #1E2327;
  box-shadow: 0 4px 15px rgba(157,196,208,0.14);
}

/* ==========================================================  
   HEADER / NAVIGATION  
========================================================== */
header {
  background: #1E2327;
  box-shadow: 0 2px 12px rgba(24,28,32,0.12);
  padding: 0;
  z-index: 900;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #E9E4DF;
  padding: 6px 1px;
  border-bottom: 2.2px solid transparent;
  transition: border-color 0.14s, color 0.14s;
}
header nav a:hover,
header nav a:focus {
  color: #9DC4D0;
  border-bottom: 2.2px solid #9DC4D0;
  outline: none;
}
header a.cta {
  margin-left: 24px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 36px;
}
/* Responsive header */
@media (max-width: 1024px) {
  header .container {
    height: 68px;
  }
  header img {
    height: 36px;
    margin-right: 22px;
  }
  header nav {
    gap: 16px;
  }
  header a.cta {
    margin-left: 12px;
    padding: 10px 18px;
    font-size: 1.02rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    height: 56px;
  }
  header nav {
    display: none;
  }
  header a.cta {
    display: none;
  }
}

/* ==========================================================  
   MOBILE MENU (BURGER NAVIGATION)  
========================================================== */
.mobile-menu-toggle {
  background: #222C33;
  color: #9DC4D0;
  border: none;
  font-size: 2.1rem;
  padding: 6px 15px;
  border-radius: 7px;
  margin-left: 25px;
  cursor: pointer;
  display: none;
  transition: background 0.18s, color 0.18s;
  position: relative;
  z-index: 1202;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #222C33;
  color: #E9E4DF;
  z-index: 1202;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.5,.01,0,.98);
  box-shadow: 4px 0 32px rgba(30,35,39,0.13);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 6px 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #9DC4D0;
  cursor: pointer;
  padding: 5px 15px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
  z-index: 1203;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #22425F;
  color: #E9E4DF;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  padding: 30px 35px 15px 42px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #E9E4DF;
  background: none;
  border: none;
  padding: 16px 0 13px 0;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  display: block;
  border-bottom: 1.5px solid #2A363F;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
  transition: color 0.22s, background 0.12s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #9DC4D0;
  background: #22425F;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==========================================================  
   FOOTER  
========================================================== */
footer {
  background: #1E2327;
  padding: 48px 0 28px 0;
  color: #E9E4DF;
  font-size: 1rem;
  box-shadow: 0 -3px 11px rgba(30,35,39,0.09);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  padding-top: 0;
  padding-bottom: 0;
}
footer img {
  height: 41px;
  margin-bottom: 17px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
}
footer nav a {
  color: #9DC4D0;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 0.97rem;
  text-transform: uppercase;
  font-weight: 600;
}
footer nav a:hover, footer nav a:focus {
  color: #E9E4DF;
}
footer .social-media {
  display: flex;
  gap: 15px;
}
footer .social-media a {
  display: inline-flex;
  background: #22425F;
  border-radius: 7px;
  padding: 8px;
  transition: background 0.2s;
}
footer .social-media a:hover {
  background: #9DC4D0;
}
footer .social-media img {
  height: 22px;
  width: 22px;
}
footer div {
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}

/* ==========================================================  
   PAGE-SPECIFIC ELEMENTS & INDUSTRIAL ACCENTS
========================================================== */
ul li, ol li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.00rem;
}
ul li img, ol li img {
  height: 29px;
  width: auto;
  filter: grayscale(33%) contrast(1.1) drop-shadow(0 2px 2px rgba(30,35,39,0.06));
  margin-right: 6px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #232c33;
  color: #E9E4DF;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(30,50,70,0.07);
}
thead th {
  background: #22425F;
  color: #E9E4DF;
  font-size: 1.11rem;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 2px solid #9DC4D0;
}
tbody td {
  padding: 11px 10px;
  border-bottom: 1.1px solid #3b4b57;
  font-size: 1.01rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  thead {
    display: none;
  }
  tbody td {
    padding: 10px 4px;
    border-bottom: 1px solid #3b4b57;
    text-align: left;
  }
}

/* ==========================================================  
   COOKIE BANNER & COOKIE MODAL
========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1205;
  width: 100vw;
  background: #222C33;
  color: #E9E4DF;
  box-shadow: 0 -5px 24px rgba(30,35,39,0.19);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
  animation: cookieBannerIn 0.5s cubic-bezier(.44,.38,.36,1.02);
}
@keyframes cookieBannerIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #22425F;
  color: #E9E4DF;
  border: none;
  cursor: pointer;
  margin: 0 1.5px;
  box-shadow: 0 1.5px 5px rgba(34,66,95,0.11);
  transition: background 0.17s, color 0.18s;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #9DC4D0;
  color: #222C33;
}
.cookie-banner button.cookie-settings {
  background: #9DC4D0;
  color: #22425F;
}
.cookie-banner button.cookie-settings:focus,
.cookie-banner button.cookie-settings:hover {
  background: #22425F;
  color: #E9E4DF;
}

.cookie-modal {
  position: fixed;
  z-index: 1300;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,35,39,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.5s cubic-bezier(.52,.2,.33,1.05);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #222C33;
  color: #E9E4DF;
  padding: 35px 27px 26px 27px;
  border-radius: 13px;
  min-width: 320px;
  max-width: 99vw;
  box-shadow: 0 8px 32px rgba(34,66,95,0.24);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #9DC4D0;
  margin-bottom: 6px;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 1.08rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #22425F;
  width: 19px;
  height: 19px;
  margin: 0 7px 0 0;
}
.cookie-category .cookie-required {
  color: #9DC4D0;
  font-size: 0.91em;
  margin-left: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 19px;
  background: none;
  border: none;
  color: #9DC4D0;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.13s, color 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #E9E4DF;
  background: #22425F;
}
.cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-buttons button {
  padding: 10px 17px;
  border-radius: 4px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: #9DC4D0;
  color: #222C33;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.18s, color 0.13s;
}
.cookie-modal-buttons button:focus,
.cookie-modal-buttons button:hover {
  background: #22425F;
  color: #E9E4DF;
}
@media (max-width: 540px) {
  .cookie-modal-content {
    padding: 14px 3vw 16px 3vw;
    min-width: 0;
  }
}

/* ==========================================================  
   UTILITY CLASSES, MARGINS, FREQUENT COMPONENTS
========================================================== */
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.align-center { text-align: center !important; }


/* ==========================================================  
   RESPONSIVE TYPOGRAPHY & FLEX SPACING
========================================================== */
@media (max-width: 580px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1.02rem; }
  .cta, button.cta { font-size: 1.04rem; padding: 11px 16px; }
}
@media (max-width: 480px) {
  .section { padding: 16px 3px; }
}

/* =============================
   END STYLE SHEET
============================= */
