/* ---- CSS 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, 
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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #181B1F;
  color: #F5F2EF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
a {
  color: #8FC3D9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5F2EF;
}
ul, ol {
  margin-left: 1.4em;
}

/* ---- COLOR VARIABLES ---- */
:root {
  --color-primary: #002C42;     /* deep blue */
  --color-secondary: #8FC3D9;   /* steel blue */
  --color-accent: #F5F2EF;      /* paper white */
  --color-bg: #181B1F;          /* dark background */
  --color-metal: #B0B3B7;       /* metallic accent */
  --color-error: #CD2B31;
  --color-dark: #22262C;
  --color-card-bg: #232629;
  --color-outline: #3E4C5C;
}

/* ---- TYPOGRAPHY ---- */
body, .body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol, li, dl, dt, dd {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 1em;
}
strong { color: var(--color-secondary); font-weight: 700; }
q, cite { font-style: italic; }

/* Industrial Modern font tweaks */
h1, h2 { text-transform: uppercase; letter-spacing: 0.04em; }

/* Industrial font-weights and subtle embossed effect */
h1, h2, h3 { text-shadow: 0 1px 0 rgba(0,0,0,0.12), 0 2px 8px rgba(0,44,66,0.07); }

/* ---- SPACING & CONTAINER LAYOUTS ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.text-section {
  margin-bottom: 40px;
}

/* ---- FLEXBOX STRUCTURED CONTENTS ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(28,32,36,.13);
  position: relative;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { 
  box-shadow: 0 4px 18px 0 rgba(28, 32, 36, .19);
  transform: translateY(-4px) scale(1.012);
}

.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: center;
  gap: 20px;
  padding: 20px;
  background: #F5F2EF;
  color: #181B1F;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(0,44,66,0.10);
  border: 1px solid #E2E1DD;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card p{
	color: #000
}
.testimonial-card .stars {
  font-size: 1.2rem;
  color: #FFD600;
  letter-spacing: 0.16em;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px 0 rgba(0,44,66,0.17);
  transform: translateY(-3px) scale(1.008);
}
.testimonial-meta {
  font-size: 0.97em;
  color: #22262C;
  opacity: 0.86;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grids */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-box {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-outline);
  border-radius: 12px;
  padding: 28px 24px 22px 24px;
  min-width: 240px;
  flex: 1 1 280px;
  max-width: 340px;
  box-shadow: 0 2px 10px 0 rgba(0,44,66,.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
}
.feature-box img {
  width: 38px; height: 38px;
  filter: grayscale(30%) contrast(1.3) brightness(1.13);
}
.feature-box h3 {
  color: var(--color-secondary);
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.feature-box:hover, .feature-box:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 16px 0 rgba(143,195,217,0.13);
}

/* ---- HEADER & NAVIGATION ---- */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 8px 0 rgba(0,44,66,0.10);
  position: relative;
  z-index: 90;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 24px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  color: #F5F2EF;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 4px;
  border-radius: 3px;
  transition: color .2s, background .2s;
}
nav a:hover, nav a:focus {
  background:rgba(143,195,217,0.08);
  color: var(--color-secondary);
}
.cta-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1.05rem;
  box-shadow: 0 2px 6px 0 rgba(143,195,217,0.08);
  border: none;
  margin-left: 8px;
  transition: background 0.24s, color 0.19s, transform 0.13s;
  cursor: pointer;
  position: relative;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 20px 0 rgba(143,195,217,0.07);
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-left: 0.5em;
  font-size: 1.8rem;
  border: none;
  outline: none;
  transition: background 0.13s, color 0.14s;
  z-index: 102;
  position: absolute;
  top: 22px; right: 20px;
  box-shadow: 0 1px 6px 0 rgba(143,195,217,0.09);
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.72,.01,.22,1);
  box-shadow: 6px 0 40px 0 rgba(0,44,66,0.22);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  margin: 24px 0 16px 16px;
  transition: background 0.17s, color 0.12s;
  align-self: flex-end;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 32px 32px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 8px;
  border-radius: 6px;
  background: transparent;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(143,195,217,0.14);
  color: var(--color-secondary);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 1024px) {
  header .container nav,
  header .container .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex !important; }
}

/* ---- MAIN & SECTIONS ---- */
main {
  min-height: 60vh;
  width: 100%;
  background: transparent;
  margin-bottom: 30px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}

@media (max-width: 600px){
  section {
    padding: 24px 0;
    margin-bottom: 42px;
  }
}

/* ---- LISTS ---- */
ul, ol {
  margin-bottom: 18px;
  margin-top: 8px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 12px;
}

/* FAQ DL styles */
dt {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--color-secondary);
  margin-top: 17px;
  margin-bottom: 7px;
}
dd {
  margin-left: 0.5em;
  margin-bottom: 10px;
}

/* ---- FORMATTING / EMBELLISHMENTS ---- */
hr {
  border: none;
  border-top: 1.5px solid var(--color-metal);
  margin: 32px 0;
}

/* ---- CARDS ---- */
.card {
  background: var(--color-card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(28,32,36,.13);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* ---- CONTACT GRID ---- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.address-block, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.address-block img, .contact-details img {
  width: 19px; height: 19px;
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
  filter: grayscale(34%) contrast(1.22) brightness(0.94);
}

/* ---- FOOTER ---- */
footer {
  width: 100%;
  background: var(--color-dark);
  color: var(--color-accent);
  padding-top: 36px;
  padding-bottom: 18px;
  font-size: 0.97rem;
  border-top: 3px solid var(--color-outline);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 8px;
}
.footer-brand {
  flex: 1 1 128px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.footer-brand img {
  width: 50px;
  filter: grayscale(1);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 160px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 2 1 240px;
  color: var(--color-accent);
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 19px; height: 19px;
  filter: grayscale(25%) contrast(1.11);
}
.footer-legal {
  width: 100%;
  padding-top: 19px;
  text-align: center;
  color: #8c9297;
  font-size: 0.92em;
  opacity: 0.77;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-card-bg);
  color: var(--color-accent);
  border-top: 2.5px solid var(--color-secondary);
  box-shadow: 0 -2px 12px 0 rgba(0,44,66,0.12);
  padding: 18px 28px 18px 32px;
  z-index: 1100;
  font-size: 1rem;
  animation: cookieFadeIn 0.6s;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 320px;
  margin-right: 18px;
  color: var(--color-accent);
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  padding: 8px 20px;
  font-size: 1em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 16px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  border: none;
  margin-right: 5px;
  transition: background 0.12s, color 0.14s, transform 0.11s;
  margin-bottom: 1px;
}
.cookie-btn:last-child {
  margin-right: 0;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #CD2B31;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-card-bg);
  color: var(--color-secondary);
  border: 1.2px solid var(--color-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-1.5px) scale(1.025);
  outline: none;
}
/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 420px;
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: 0 6px 40px 0 rgba(0,44,66,0.20);
  color: var(--color-accent);
  transform: translate(-50%, -54%) scale(1);
  z-index: 1200;
  padding: 34px 26px 16px 26px;
  animation: cookieModalFade .35s;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookieModalFade {
  from { opacity: 0; transform: translate(-50%, -64%) scale(0.96); }
  to   { opacity: 1; transform: translate(-50%, -54%) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #22262c;
  border-radius: 9px;
  padding: 15px 13px;
  margin-bottom: 11px;
  font-size: 1.08em;
}
.cookie-category.essential {
  opacity: 0.77;
  font-style: italic;
}
.cookie-category label {
  flex: 1 1 auto;
  font-size: 1em;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  background: #8FC3D9;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #F5F2EF;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(143,195,217,0.08);
  transition: left .24s;
}
.cookie-switch input:checked + .slider {
  left: 21px;
  background: #002C42;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding: 6px 0 0 0;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px; right: 12px;
  background: none;
  color: var(--color-accent);
  font-size: 1.5rem;
  border: none;
  z-index: 1312;
  padding: 0;
}
.cookie-modal .close-modal:hover {
  color: var(--color-secondary);
}

@media (max-width: 768px){
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 13px 9vw 13px 5vw;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-banner-text { margin-right: 0; }
  .cookie-banner .cookie-banner-actions { gap: 8px; }
  .cookie-modal { padding: 22px 8vw 16px 8vw; }
}

/* ---- RESPONSIVE FLEX LAYOUTS ---- */
@media (max-width: 1024px){
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav, .footer-contact { min-width: 180px; }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand {
    flex: 1 1 70px;
  }
}
@media (max-width: 785px){
  .testimonial-card { padding: 13px 8px; }
  .feature-box { min-width: 170px; max-width: 99vw; padding: 16px 7vw; }
  .footer-contact {
    font-size: 0.93em;
  }
  .content-wrapper {
    gap: 13px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.15rem; }
  nav, .footer-nav { gap: 6px; }
  .footer-brand img { width: 36px; }
  .feature-box { min-width: unset; max-width: 99vw; padding: 13px 6vw; }
  .card { padding: 17px 7vw; }
  .container { padding-left: 8px; padding-right: 8px; }
  .section { padding: 19px 5px; }
  .testimonial-card { padding: 11px 3vw; }
  .contact-info { gap: 14px; }
  .footer-contact span { font-size: 0.90em; }
}

@media (max-width: 768px) {
  .content-wrapper, .text-image-section, .feature-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
  }
  .feature-grid, .card-container {
    gap: 16px;
  }
}

/* ---- MISC ---- */
::-webkit-scrollbar { width: 10px; background: #23292D; }
::-webkit-scrollbar-thumb { background: #323B44; border-radius: 13px; }
::selection { background: var(--color-secondary); color: var(--color-primary); }

[tabindex]:focus, a:focus, button:focus, input:focus {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ---- MICRO-ANIMATIONS ---- */
.cta-btn, .card, .feature-box, nav a, .mobile-nav a, .cookie-btn {
  transition: background .2s, color .15s, box-shadow .2s, transform .15s, border .15s;
}

/* ---- CARD SHADOWS ---- */
.card, .feature-box, .testimonial-card {
  box-shadow: 0 2px 10px 0 rgba(28,32,36,0.06);
}

/* ---- Z-INDEX CONTROLS ---- */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 1000; }

/* ---- UTILITIES ---- */
.d-none { display: none !important; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.border-accent { border-color: var(--color-secondary); }

/* ---- END OF MAIN STYLE ---- */
