/* RESET & 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #171F24;
  color: #E3E6EA;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  /* fallback anti-alias */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #38A1A7;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F8C13C;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong, b {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.6em;
  color: #F8C13C;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, li, blockquote {
  color: #E3E6EA;
  font-size: 1rem;
}
blockquote {
  border-left: 4px solid #38A1A7;
  padding-left: 1.3em;
  margin: 1em 0 1em 0;
  color: #CFCFCF;
  font-style: italic;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* MAIN LAYOUT STANDARD SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #212A32;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(25,35,45,0.12);
  border: 1.5px solid #293B44;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232831;
  border-radius: 12px;
  box-shadow: 0 3px 16px 0 rgba(32,42,53,0.10);
  border: 1px solid #293B44;
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, background 0.22s;
}
.card:hover,
.card:focus {
  background: #26303A;
  box-shadow: 0 8px 32px 0 rgba(56,161,167,0.11);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F8F8;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(33,41,50,0.08);
  margin-bottom: 20px;
  color: #232831;
  border-left: 5px solid #38A1A7;
}
.testimonial-card blockquote {
  color: #232831;
  border: none;
  font-style: normal;
  margin: 0;
}
.testimonial-card span {
  color: #1B3D5A;
  font-size: 0.97em;
  margin-top: 0.6em;
  display: block;
  opacity: 0.8;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.text-section {
  margin-bottom: 20px;
}
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
/* ----------------------------------------------------------------------------
   NAVIGATION - INDUSTRIAL MODERN
---------------------------------------------------------------------------- */
header {
  background: linear-gradient(90deg, #141A1F 85%, #232831 100%);
  box-shadow: 0 2px 14px 0 rgba(20,26,31,0.13);
  border-bottom: 2px solid #232831;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.main-nav a {
  color: #E3E6EA;
  font-family: 'Roboto Slab', Arial, sans-serif;
  font-size: 1em;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: #38A1A7;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: width 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F8C13C;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 90%;
}
.main-nav img {
  width: 148px;
  min-width: 110px;
  margin-right: 18px;
  filter: grayscale(0.2) contrast(1.07);
}
.btn-primary {
  display: inline-block;
  font-family: 'Roboto Slab', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  font-size: 1.05em;
  border-radius: 7px;
  color: #232831;
  background: #F8C13C;
  border: none;
  margin-left: 14px;
  box-shadow: 0 2px 9px 0 rgba(248,193,60,0.12);
  text-shadow: 0 1px 0 #fff4;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.17s;
  outline: none;
  letter-spacing: 0.01em;
  border: 2px solid #AD832E;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffb610;
  color: #232831;
  box-shadow: 0 6px 18px 0 rgba(248,193,60,0.22);
  border-color: #232831;
}
/* HAMBURGER MENU MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #212A32;
  color: #F8C13C;
  border: none;
  font-size: 2.1rem;
  padding: 8px 14px;
  border-radius: 7px;
  margin-left: auto;
  box-shadow: 0 2px 9px 0 rgba(34,42,55,0.11);
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #232831;
  color: #F8C13C;
}
.mobile-menu {
  position: fixed;
  z-index: 1500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1B232C;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.7,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  will-change: transform;
  box-shadow: 0 0 80px 0 rgba(15,24,38,0.81);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2.1rem;
  color: #38A1A7;
  background: transparent;
  border: none;
  margin-top: 17px;
  margin-right: 18px;
  cursor: pointer;
  z-index: 99;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F8C13C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 55px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  color: #F8F8F8;
  font-family: 'Roboto Slab';
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 0;
  border-bottom: 1px solid #232831;
  width: 80vw;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F8C13C;
  background: #213141;
}
/* Hide main nav on mobile */
@media (max-width: 930px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 931px) {
  .mobile-menu {
    display: none !important;
  }
}

/* TABLES - INDUSTRIAL MODERN STYLES */
table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  background: #222930;
  color: #F8F8F8;
  box-shadow: 0 2px 7px 0 rgba(18,25,35,0.13);
  border-radius: 8px;
  overflow: hidden;
}
thead th {
  font-family: 'Roboto Slab';
  font-size: 1.1em;
  background: #1B3D5A;
  color: #F8C13C;
  padding: 18px 10px;
  border-bottom: 2px solid #293B44;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.03em;
}
tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #28323D;
  vertical-align: middle;
  font-size: 1em;
  color: #DCE4EA;
}
tbody tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: #27313C;
  color: #F8C13C;
  transition: background 0.19s, color 0.17s;
}
table a {
  color: #38A1A7;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.17s;
}
table a:hover,
table a:focus {
  color: #F8C13C;
}
/* INSIGHT/INFO BOXES */
.insight-box {
  background: #232831;
  padding: 24px 22px;
  border-radius: 12px;
  border: 1px solid #293B44;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(35,49,61,0.09);
}
.insight-box h3 {
  color: #38A1A7;
  margin-bottom: 12px;
}
.insight-box ul, .insight-box p, .insight-box blockquote {
  color: #E3E6EA;
}
/* FOOTER & CONTACT AREA -----------------------------------------------------*/
footer {
  background: linear-gradient(90deg, #1B3D5A, #171F24 96%);
  color: #DBE6ED;
  border-top: 2px solid #293B44;
  padding: 32px 0 18px 0;
  font-size: 1em;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #F8C13C;
  font-family: 'Roboto Slab';
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1em;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #38A1A7;
}
.footer-contact {
  color: #DCE0EA;
  line-height: 1.7;
}
.footer-contact a {
  color: #F8C13C;
  word-break: break-all;
  transition: color 0.2s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #38A1A7;
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* RESPONSIVE STYLES - MOBILE FIRST -----------------------------------------*/
.section, .card, .insight-box {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
  .card-container, .content-grid, .team-profiles {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 13px;
    border-radius: 10px;
  }
  .feature-item {
    gap: 8px;
  }
  .team-profiles {
    padding-left: 0;
    padding-right: 0;
  }
  .main-nav img {
    width: 120px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.31rem; }
  h3 { font-size: 1.05rem; }
  header {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 480px) {
  .mobile-nav a {
    width: 93vw;
    font-size: 1.07em;
    padding: 12px 0;
  }
}
@media (max-width: 420px) {
  .footer-contact {
    font-size: 0.97em;
  }
}

/* HIGHLIGHT, METALLIC & INDUSTRIAL EFFECTS ---------------------------------*/
.section, .card, .insight-box {
  /* metallic-industrial subtle border illusion */
  box-shadow:
    0 0 2px #ABB4BC inset,
    0 4px 16px 0 rgba(19,31,36,0.13);
}
.btn-primary {
  /* metallic accent */
  border-bottom: 3px solid #DD921F;
  filter: drop-shadow(0 2px 5px #AD832E22);
}
/* SUBTLE HOVER/FOCUS STATES -----------------------------------------------*/
.btn-primary:active {
  background: #e5aa2a;
  border-color: #1B3D5A;
  box-shadow: 0 2px 9px 0 rgba(248,193,60,0.18);
}
input, textarea, select, button {
  font-family: 'Open Sans', Arial, sans-serif;
  outline-color: #38A1A7;
}

/* ICON STYLES -------------------------------------------------------------*/
ul img, li img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 9px;
  filter: grayscale(0.45) contrast(1.15) brightness(1.12);
  opacity: 0.78;
}

/* COOKIE CONSENT BANNER & MODAL ===========================================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #212A32;
  color: #F8C13C;
  border-top: 3px solid #38A1A7;
  box-shadow: 0 -2px 16px rgba(30,35,42,0.19);
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 12px 22px 18px;
  font-size: 1em;
  animation: banner-in 0.6s cubic-bezier(.7,0,.31,1);
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Roboto Slab', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  margin: 0 1.5px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 0.01em;
  transition: background 0.17s, color 0.16s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: #38A1A7;
  color: #fff;
  border: 2px solid #1B3D5A;
  box-shadow: 0 2px 8px 0 rgba(56,161,167,0.08);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #219084;
  color: #F8C13C;
}
.cookie-btn.reject {
  background: #2C343C;
  color: #F8C13C;
  border: 2px solid #293B44;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #232831;
  color: #fff;
}
.cookie-btn.settings {
  background: #F8C13C;
  color: #212A32;
  border: 2px solid #AD832E;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffe69f;
  color: #232831;
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30, 35, 42, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.33s cubic-bezier(.7,0,.35,1);
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #232831;
  color: #E3E6EA;
  border-radius: 13px;
  padding: 32px 24px 24px 24px;
  width: 94vw;
  max-width: 420px;
  box-shadow: 0 12px 56px 0 rgba(19,31,36,0.23);
  border: 2.5px solid #38A1A7;
  position: relative;
  animation: modal-in 0.38s cubic-bezier(.8, 0, .35, 1);
}
@keyframes modal-in {
  0% { transform: translateY(45px) scale(.97); opacity: 0.33; }
  80% { opacity: 0.96; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #F8C13C;
  font-size: 1.27rem;
  margin-bottom: 16px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.06em;
  margin-bottom: 13px;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: #38A1A7;
  width: 20px;
  height: 20px;
}
.cookie-modal .essential {
  color: #38A1A7;
  font-weight: bold;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 21px; top: 18px;
  background: transparent;
  color: #38A1A7;
  font-size: 1.74em;
  border: none;
  cursor: pointer;
  z-index: 12;
  transition: color 0.15s;
  padding: 0;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #F8C13C;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
@media (max-width: 550px) {
  .cookie-modal {
    padding: 18px 5px 18px 10px;
    border-radius: 9px;
  }
}

/* INDUSTRIAL URBAN MISCELLANEOUS EFFECTS -----------------------------------*/
hr {
  border: none;
  border-top: 1.7px solid #293B44;
  margin: 30px 0 30px 0;
  opacity: 0.25;
}
::-webkit-input-placeholder { color: #7E94A7; }
:-ms-input-placeholder { color: #7E94A7; }
::placeholder { color: #7E94A7; }

/* MICRO-INTERACTIONS -------------------------------------------------------*/
.card, .insight-box, .testimonial-card, .btn-primary, .cookie-btn, .mobile-menu, .mobile-nav a {
  transition: box-shadow 0.17s, background 0.18s, color 0.16s, border 0.16s, transform 0.14s;
}
.card:hover, .insight-box:hover, .testimonial-card:hover {
  box-shadow: 0 12px 32px 0 rgba(56,161,167,0.10);
  transform: translateY(-2.5px) scale(1.01);
  border-color: #38A1A7;
}
.main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus {
  outline: 2.5px solid #38A1A7;
  outline-offset: 1.5px;
  color: #F8C13C;
}
/* LIST ELEMENTS -----------------------------------------------------------*/
ul li, ol li {
  margin-bottom: 9px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}
ul li strong, ul li b {
  color: #F8C13C;
  font-family: 'Roboto Slab';
}

/* SPACING UTILITY CLASSES -------------------------------------------------*/
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mr-2 { margin-right: 16px !important; }
.ml-2 { margin-left: 16px !important; }
/* FORMS & BUTTONS ---------------------------------------------------------*/
input, textarea, select {
  background: #29333B;
  color: #E3E6EA;
  border-radius: 7px;
  border: 1.5px solid #293B44;
  padding: 11px 14px;
  font-size: 1em;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  border: 1.5px solid #38A1A7;
  outline: none;
}
label {
  font-family: 'Roboto Slab';
  font-size: 1em;
  color: #38A1A7;
  display: block;
  margin-bottom: 7px;
}
button, .btn-primary {
  cursor: pointer;
}

/* INDUSTRIAL FONT-FACE CONNECTIONS ----------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700&display=swap');

/* CLASSES FROM HTML: card-container, card, content-grid, text-image-section, testimonial-card, feature-item already covered above. */

/* Z-INDEX FOR OVERLAYS ----------------------------------------------------*/
.mobile-menu { z-index: 1500; }
.cookie-banner { z-index: 2000; }
.cookie-modal-backdrop { z-index: 2100; }

/* Error prevention: Prevent card overlap */
.card, .insight-box, .testimonial-card {
  min-width: 0;
  word-break: break-word;
}

/* Address decorative absolute, not content: For now, not used, but if needed... */
.absolute-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.33;
  z-index: 1;
  /* Layered below content */
}

/* GENERAL SELECTION COLOR -------------------------------------------------*/
::selection {
  background: #38A1A7;
  color: #232831;
}
/* ACCESSIBILITY: Focus Highlighting ---------------------------------------*/
:focus-visible {
  outline: 2.5px solid #38A1A7;
  outline-offset: 2px;
}

/* END OF INDUSTRIAL MODERN THEME CSS */
