/* RESET, NORMALIZE & BASE ------------------------------------ */
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;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #181D22;
  color: #F3F5F7;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #181D22; /* near-black industrial background */
  color: #F3F5F7;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #4D7C94;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #F3F5F7;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* CONTAINER ---------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TYPOGRAPHY --------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #F3F5F7;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0 #19324D44;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, table, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #E4E5E7;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #4D7C94;
  padding-left: 16px;
  color: #19324D;
  background: #F3F5F7;
  margin-bottom: 12px;
}
.text-section ul, .text-section ol {
  list-style: disc inside;
  padding-left: 18px;
  color: #C9CED2;
}
strong, b {
  font-weight: 700;
}

/* LAYOUT: SECTION & WRAPPING------------ */
section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.cta-banner {
  background: #10151A;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #0006;
  border: 1px solid #31465d;
  padding: 40px 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* SPACING/ALIGNMENT CLASSES ------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232B34;
  border: 1px solid #434C57;
  border-radius: 12px;
  box-shadow: 0 2px 8px #10151A33;
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
  background: #F3F5F7;
  color: #181D22;
  border-radius: 14px;
  box-shadow: 0 2px 10px #10151A22;
  border: 1px solid #C3CBD1;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 560px;
}
.testimonial-card blockquote {
  color: #1E242A;
  background: transparent;
  border-left: 4px solid #4D7C94;
  margin-bottom: 0;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #19324D;
  font-family: 'Montserrat', Arial, sans-serif;
}

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

.value-list, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 20px;
}
.feature-grid li, .service-list li, .value-list li {
  background: #232B34;
  color: #F3F5F7;
  border: 1px solid #343F48;
  box-shadow: 0 2px 8px #19324D20;
  border-radius: 12px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 340px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 4px 16px #00095c28, 0 1.5px 4px #4D7C9460;
  transform: translateY(-2px) scale(1.025);
}

.text-section, .confirmation .text-section {
  margin-bottom: 24px;
  padding: 0 2px;
}

/* HERO ------------------------------- */
.hero {
  background: linear-gradient(90deg, #10151A 60%, #232B34 100%);
  padding: 52px 0 40px 0;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* BUTTONS & CTA ---------------------- */
.cta-btn, .cta-btn-secondary {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #4D7C94;
  color: #F3F5F7;
  border: 0;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-top: 8px;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px #19324D22;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.16s;
  outline: none;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #19324D;
  color: #F3F5F7;
  box-shadow: 0 4px 16px #222a4660;
  transform: translateY(-2px) scale(1.04);
}
.cta-btn-secondary {
  background: transparent;
  color: #4D7C94;
  border: 2px solid #4D7C94;
  margin-left: 0;
  margin-top: 8px;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: #4D7C94;
  color: #F3F5F7;
}

/* SEARCH BAR --------------------------- */
.search-bar {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  max-width: 410px;
  margin: 12px auto 0 auto;
  align-items: center;
}
.search-bar input[type="search"] {
  flex: 1;
  padding: 10px 18px;
  border-radius: 24px 0 0 24px;
  border: 1.5px solid #4D7C94;
  font-size: 1rem;
  background: #232B34;
  color: #F3F5F7;
}
.search-bar button {
  background: #4D7C94;
  border: none;
  padding: 10px 16px;
  border-radius: 0 24px 24px 0;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
}
.search-bar button:hover, .search-bar button:focus {
  background: #19324D;
}

/* HEADER & NAVIGATION ------------------- */
header {
  width: 100%;
  background: #10151A;
  border-bottom: 2px solid #232B34;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 0;
}
.logo img {
  height: 40px;
  width: auto;
  filter: grayscale(35%) contrast(135%); /* industrial touch */
}
.main-nav, .mobile-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  padding: 7px 13px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F3F5F7;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: #232B34;
  color: #4D7C94;
}
.main-nav .cta-btn {
  margin-left: 16px;
}
/* Hamburger button */
.mobile-menu-toggle {
  display: none;
  height: 48px;
  width: 48px;
  background: #232B34;
  color: #F3F5F7;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 2rem;
  transition: background 0.16s;
  z-index: 201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #4D7C94;
  color: #fff;
}

/* MOBILE MENU & ANIMATION */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 2201;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #19324D;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.71,-0.1,.44,1.2);
  box-shadow: 8px 0 24px #0008;
  padding: 0 36px 28px 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 16px;
  height: 44px;
  width: 44px;
  background: #232B34;
  border: none;
  font-size: 1.95rem;
  color: #F3F5F7;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2210;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #4D7C94;
}
.mobile-nav {
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  color: #F3F5F7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 14px 4px;
  width: 100%;
  border-radius: 8px;
  text-align: left;
  transition: background 0.18s;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232B34;
  color: #4D7C94;
}

/* Hide nav on mobile, show hamburger */
@media (max-width: 998px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 999px) {
  .mobile-menu {
    display: none !important;
  }
}

/* BLOG PREVIEW & LIST ----------------- */
.blog-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 14px;
}
.blog-preview {
  background: #232B34;
  padding: 18px 18px 14px 18px;
  border-radius: 10px;
  min-width: 235px;
  max-width: 335px;
  flex: 1 1 260px;
  box-shadow: 0 2px 7px #10151A22;
  border: 1px solid #343F48;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.blog-preview:hover {
  box-shadow: 0 6px 24px #4D7C9444, 0 2px 8px #19324D25;
  transform: scale(1.025);
}
.blog-preview h3 a {
  color: #F3F5F7;
  transition: color 0.18s;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.featured-post {
  background: #10151A;
  border: 2px solid #4D7C94;
  border-radius: 10px;
  padding: 18px 14px 14px 20px;
  color: #F3F5F7;
  box-shadow: 0 2px 9px #4D7C9422;
  margin-top: 16px;
}
.blog-categories {
  margin: 18px 0 4px 0;
  font-size: 1.02rem;
  color: #4D7C94;
}
.blog-categories a {
  color: #4D7C94;
  text-decoration: underline;
  transition: color 0.16s;
}
.blog-categories a:hover {
  color: #F3F5F7;
}

/* PRICING TABLE -------------------------*/
.pricing-table {
  width: 100%;
  background: #232B34;
  border-radius: 10px;
  color: #F3F5F7;
  box-shadow: 0 2px 9px #4D7C9420;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 28px;
  border: 1.5px solid #343F48;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
}
.pricing-table th {
  background: #19324D;
  color: #F3F5F7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tr {
  border-bottom: 1px solid #343F48;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  background: none;
  color: #E4E5E7;
  vertical-align: top;
}
.pricing-table ul {
  list-style: disc inside;
  color: #C9CED2;
  margin: 0;
  padding-left: 14px;
}

/* CONTACT, MAP, ETC. ------------------- */
.text-section ul li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  margin-top: 8px;
  color: #4D7C94;
  font-size: 1.06rem;
}
.contact-map img {
  width: 44px;
  height: 44px;
}

/* CONFIRMATION PAGE -------------------- */
.confirmation {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 60px 0 30px 0;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}

/* FOOTER ------------------------------ */
footer {
  width: 100%;
  background: #10151A;
  border-top: 2px solid #232B34;
  color: #F3F5F7;
  padding: 40px 0 24px 0;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-branding img {
  width: 40px;
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-nav a {
  color: #C3CBD1;
  padding: 5px 7px;
  border-radius: 5px;
  transition: background 0.16s;
}
.footer-nav a:hover {
  background: #232B34;
  color: #F3F5F7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #B7BDC1;
  font-size: 0.96rem;
}

/* COOKIE CONSENT BANNER ----------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232B34;
  color: #F3F5F7;
  border-top: 2.5px solid #4D7C94;
  padding: 18px 16px 22px 16px;
  box-shadow: 0 -2px 24px #0006;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 3200;
  animation: fadeInUp 0.55s cubic-bezier(.8,-0.3,.54,1.2);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(80px); }
  85% { opacity: 1; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0) }
}
.cookie-banner p {
  text-align: center;
  color: #F3F5F7;
  margin: 0;
  padding: 0;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button, .cookie-banner .cta-btn-cookie {
  background: #4D7C94;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 24px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.17s, color 0.16s, box-shadow 0.18s;
  margin: 0;
}
.cookie-banner button.cookie-reject {
  background: #343F48;
  color: #F3F5F7;
}
.cookie-banner button:hover, .cookie-banner .cta-btn-cookie:focus {
  background: #19324D;
  color: #F3F5F7;
}
.cookie-settings-btn {
  background: transparent;
  border: 1.6px solid #4D7C94;
  color: #4D7C94;
  margin-left: 0;
  margin-right: 0;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #4D7C94;
  color: #F3F5F7;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #232B34DD;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  z-index: 3400;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #F3F5F7;
  color: #232B34;
  border-radius: 16px;
  box-shadow: 0 8px 32px #19324D55;
  max-width: 400px;
  width: 90vw;
  padding: 34px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  animation: modalPop 0.4s cubic-bezier(.6,-0.2,.35,1.2);
}
@keyframes modalPop {
  0% { opacity: 0; transform: scale(.89) translateY(52px); }
  70% { opacity: 1; transform: scale(1.05) translateY(-5px); }
  100% { opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #19324D;
  cursor: pointer;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #19324D;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 5px 0;
  font-size: 0.98rem;
}
.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #C3CBD1;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #4D7C94;
}
.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #8885;
  transition: transform 0.17s;
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(14px);
}
.cookie-modal-footer {
  margin-top: 18px;
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* MEDIA QUERIES ----------------------- */
@media (max-width: 998px) {
  .container {
    max-width: 100vw;
    padding: 0 14px;
    gap: 16px;
  }
  section {
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .feature-grid, .service-list, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .service-list li {
    max-width: 100%;
    min-width: auto;
    font-size: 1rem;
  }
  .cta-banner {
    padding: 28px 7px;
  }
  .header .container {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer-branding, .footer-contact, .footer-nav {
    flex-direction: column !important;
    gap: 9px !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 770px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.27rem; }
  .container {
    padding: 0 7px;
  }
  .blog-list {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 10px;
  }
  .card-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-branding, .footer-contact, .footer-nav {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }
  .confirmation {
    padding: 30px 0 12px 0;
  }
}
@media (max-width: 550px) {
  .cta-btn, .cta-btn-secondary { padding: 9px 18px; font-size: 1rem; }
  .footer-contact { font-size: 0.92rem; }
  .blog-preview { min-width: 90vw; }
}

/* FONT IMPORTS (Google Fonts) ----------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;700&display=swap');

/* ******** INDUSTRIAL MODERN DECORATIVE ELEMENTS ******** */
section, .card, .feature-grid li, .service-list li, .blog-preview, .cta-banner, .testimonial-card {
  border-bottom: 2.5px solid #232B3444;
}
.card, .feature-grid li, .service-list li, .testimonial-card {
  box-shadow: 0 3px 12px #0c243980, 0 1.3px 4px #19324D20;
  position: relative;
}
.card:before, .feature-grid li:before, .service-list li:before {
  content: "";
  display: block;
  position: absolute;
  left: 14px; top: 10px;
  width: 24px; height: 3px;
  background: #B7BDC1;
  border-radius: 2px;
  opacity: 0.19;
  z-index: 2;
}

/* Details for strong contrast in testimonials/reviews */
.testimonial-card, .testimonial-card * {
  color: #181D22;
  background: #F3F5F7;
}
.testimonial-card blockquote {
  color: #232B34;
}
.testimonial-card .testimonial-info {
  color: #19324D;
}

/* FOCUS & TRANSITIONS ------------------- */
a, button, .cta-btn, .cta-btn-secondary, .cookie-banner button, .mobile-menu-toggle {
  outline: none;
  transition: color 0.15s, background-color 0.13s, border-color 0.12s, box-shadow 0.13s;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .cta-btn-secondary:focus-visible {
  box-shadow: 0 0 0 3px #4D7C9488;
  border-radius: 8px;
}

/* TABLET IMPROVEMENTS */
@media (max-width: 950px) {
  .footer-branding, .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .container {
    gap: 12px;
  }
}

/* Helper classes */
.hide { display: none !important; }
.text-center { text-align: center !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }

/* END OF STYLE.CS */
