/* -----------------------------
   CSS RESET & NORMALIZE RULES
------------------------------ */
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.6;
  background: #212731;
  color: #F4F8FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #3282B8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4F8FB;
}
ul, ol {
  margin-left: 1.2em;
}
strong {
  font-weight: 700;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* -------------------------------------------
   ROOT VARIABLES FOR INDUSTRIAL MODERN FEEL
-------------------------------------------- */
:root {
  --color-bg-dark: #212731;
  --color-primary: #17304D;
  --color-secondary: #3282B8;
  --color-accent: #F4F8FB;
  --color-metal: #a6b1bb;
  --color-card: #232b36;
  --color-ui-border: #34495e;
  --color-shadow: #111820b3;
  --color-success: #18CEB0;
  --color-error: #F44336;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-sm: 4px;
  --shadow-md: 0 4px 24px 0 #11182060;
  --font-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ---------------------------------------------------
   TYPOGRAPHY – INDUSTRIAL MODERN STYLE
---------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #F4F8FB;
}
h1 {font-size: 2.2rem; margin-bottom: 22px;}
h2 {font-size: 1.5rem; margin-bottom: 18px;}
h3 {font-size: 1.2rem; margin-bottom: 14px;}
h4, h5, h6 {font-size: 1rem; margin-bottom: 12px;}
@media (min-width: 600px) {
  h1 {font-size: 2.7rem;}
  h2 {font-size: 2rem;}
  h3 {font-size: 1.35rem;}
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #dae4ed;
  margin-bottom: 14px;
}

.section > .container > .content-wrapper > h1,
.section > .container > .content-wrapper > h2 {
  color: #F4F8FB;
}

/* UI/Section styling – Brand Colors & Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* ----------------------------------------
   NAVIGATION + HEADER
----------------------------------------- */
header {
  background: #181f26;
  box-shadow: 0 3px 10px #1118203d;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-family: var(--font-display);
  letter-spacing: 0.015em;
}
header nav a {
  color: #F4F8FB;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 4px 4px;
  border-radius: 2px;
  transition: color .20s, background .20s;
  position: relative;
}
header nav a:after {
  content: "";
  display: block;
  height: 1.5px;
  width: 0;
  background: var(--color-secondary);
  transition: width 0.2s cubic-bezier(.4,0,.2,1);
  left: 0;
  bottom: 0;
  position: absolute;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
}
header nav a:hover:after, header nav a:focus:after {
  width: 60%;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #17304D 80%, #3282B8 100%);
  color: #F4F8FB;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px #17304ddb;
  border: 1.5px solid #2d4a66;
  letter-spacing: 0.05em;
  transition: background 0.28s, transform 0.18s, box-shadow .18s;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #3282B8 75%, #17304D 100%);
  color: #F4F8FB;
  box-shadow: 0 6px 32px -4px #3282B8bb;
  transform: translateY(-2px) scale(1.025);
}

/* Hides main nav on mobile, shows mobile menu toggle */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #283647;
  color: #F4F8FB;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 2px 9px #1118202a;
  border: 1.5px solid #212731;
  margin-left: 14px;
  position: relative;
  z-index: 102;
  transition: background 0.17s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover {
  background:var(--color-secondary);
  color: #212731;
}

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

/* ------------------
   MOBILE NAV OVERLAY
------------------- */
.mobile-menu {
  position: fixed;
  z-index: 2400;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(98deg, #17304D 90%, #3282B8 110%);
  transform: translateX(-110vw);
  transition: transform 0.38s cubic-bezier(0.8,0,0.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0 0 0;
  overflow-y: auto;
  box-shadow: 9px 0 30px #1118208c;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #212731;
  color: #F4F8FB;
  font-size: 2rem;
  border-radius: 50%;
  height: 46px;
  width: 46px;
  margin: 0 28px 18px 0;
  z-index: 2410;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #a6b1bb33;
  box-shadow: 0 1px 8px #181f2686;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover { background: #3282B8; color: #212731;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #F4F8FB;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  padding: 7px 0;
  border-radius: 2px;
  transition: color .20s, background .20s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #3282B8;
  background: #232b36;
}

@media (max-width: 500px) {
  .mobile-menu {
    padding-top: 12px;
  }
  .mobile-nav {
    margin-left: 16px;
    gap: 22px;
  }
}

/* ------------------------------------------------------------
   MAIN LAYOUT SECTIONS, CARDS, FLEXBOX LAYOUT PATTERNS
------------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border: 1.5px solid var(--color-ui-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 22px 20px 22px;
  color: #dae4ed;
  min-width: 230px;
  flex: 1 1 260px;
  transition: border-color 0.21s, box-shadow 0.21s, transform 0.18s;
}
.card:hover {
  border-color: #3282B8;
  box-shadow: 0 6px 22px #3282B880;
  transform: translateY(-2px) scale(1.03);
  z-index: 1;
}
.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;
  margin-bottom: 20px;
  background: #F4F8FB;
  color: #223144;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px #22314422;
  border: 1.7px solid #A6B1BB44;
  font-family: var(--font-body);
  font-size: 1.05rem;
  max-width: 710px;
  font-style: italic;
}
.testimonial-card p {
  color: #17304D;
}
.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-size: 0.98rem;
  color: #3282B8;
  font-style: normal;
  font-weight: 700;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card);
  border: 1px solid #34495e66;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: #dae4ed;
  font-size: 1rem;
}

/* Derived patterns for the page structure */
ul {
  list-style-type: disc;
  color: #aeb4bd;
  margin-bottom: 14px;
}
li {
  margin-bottom: 10px;
  line-height: 1.55;
}

/* Tables -- styled for industrial/modern look */
table {
  width: 100%;
  border-collapse: collapse;
  background: #232b36;
  color: #dae4ed;
  font-family: var(--font-body);
  font-size: 0.98rem;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 10px #11182056;
}
thead {
  background: #17304D;
  color: #F4F8FB;
  font-family: var(--font-display);
}
th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #A6B1BB33;
}
thead th {
  border-bottom: 3px solid #3282B8;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
tr:last-child td { border-bottom: none; }

/* ------- Forms (future-proofing) ------- */
input, textarea, select {
  background: #1b222a;
  border: 1.2px solid #3282B841;
  border-radius: 7px;
  color: #dae4ed;
  padding: 10px 12px;
  font-size: 1.1rem;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #3282B8;
}

/* ----------------------
   FOOTER & CONTACT INFO
----------------------- */
footer {
  background: #17304D;
  color: #F4F8FB;
  padding: 34px 20px 14px 20px;
  box-shadow: 0 -2px 14px #11182033;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
footer nav a {
  color: #F4F8FB;
  font-size: 1rem;
  opacity: 0.88;
  padding: 3px 4px;
  border-radius: 3px;
  transition: color 0.17s, opacity 0.17s;
}
footer nav a:hover {
  color: #3282B8;
  opacity: 1.0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F4F8FB;
  margin-bottom: 2px;
  font-size: 0.97rem;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  filter: brightness(1.26);
}
footer > .container > .content-wrapper > p {
  margin-top: 10px;
  color: #a6b1bb;
  font-size: 0.9rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

/* ----------------------------------
    RESPONSIVE LAYOUT/MEDIA QUERIES
---------------------------------- */
@media (max-width: 900px) {
  .section {
    padding: 34px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 0.5em;
    max-width: 100vw;
  }
  .testimonial-card {
    max-width: 98vw;
    font-size: 0.99rem;
    padding: 16px 8px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .card {
    min-width: 100%;
    width: 100%;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 16px 12px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 30px;
  }
}

/* ----------------------------------
   MICRO-INTERACTIONS, HOVER EFFECTS
----------------------------------- */
a, button, .btn-primary, th, td {
  transition: color 0.17s, background 0.23s, border-color 0.16s;
}

hr {
  border: none;
  height: 1.5px;
  background: linear-gradient(90deg, #3282B8 50%, #A6B1BB 100%);
  margin: 24px 0;
  border-radius: 2px;
}

/* ----------------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232b36;
  color: #dae4ed;
  z-index: 2403;
  box-shadow: 0 -2px 18px #22314422;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 18px 22px 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  border-top: 2.5px solid #3282B8;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #F4F8FB;
  max-width: 560px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  border: 1.3px solid #3282B8;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #3282B8;
  color: #F4F8FB;
  border-color: #3282B8;
  box-shadow: 0 2px 8px #3282B866;
}
.cookie-btn.reject {
  background: #212731;
  color: #F4F8FB;
  border-color: #34495e;
  box-shadow: 0 2px 4px #17304d26;
}
.cookie-btn.settings {
  background: transparent;
  color: #3282B8;
  border-color: #3282B8;
  box-shadow: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #17304D;
  color: #F4F8FB;
  border-color: #3282B8;
  box-shadow: 0 3px 12px #22314455;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 6px 10px 6px;
    gap: 12px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions {
    align-self: flex-end;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,39,49,0.90);
  z-index: 2502;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #F4F8FB;
  color: #232b36;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 60px #11182068;
  max-width: 410px;
  width: 95vw;
  padding: 34px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: #17304D;
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin-bottom: 12px;
  letter-spacing: 0.018em;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  background: #e5ebf0;
  border-radius: 7px;
  padding: 7px 12px 7px 14px;
  font-size: 0.99rem;
}
.cookie-category.essential {
  background: #d0e3ee;
  color: #3282B8;
}
.cookie-category label {
  font-weight: bold;
}
.cookie-category input[type='checkbox'] {
  accent-color: #3282B8;
  width: 19px; height: 19px;
  margin-left: 12px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.66rem;
  color: #17304D;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.cookie-modal-close:hover {
  background: #3282B8;
  color: #eaf3fa;
}

/* -----------------------------------------------------
   METALLIC ACCENTS & DECORATIVE URBAN/INDUSTRIAL TOUCH
------------------------------------------------------ */
hr, .ui-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #a6b1bb 10%, #3282B8 90%);
  opacity: 0.5;
  border-radius: 1.5px;
  margin: 18px 0 14px 0;
}

/* ICONS */
img[src*='icon-'] {
  filter: grayscale(70%) brightness(1.18) contrast(1.18);
}
img[src*='logo'] {
  height: 44px; width: auto;
  filter: grayscale(40%) contrast(1.16) brightness(1.1) drop-shadow(0 3px 6px #11182033);
}

/* ---------------------------------------------------
   UTILITY / HELPERS FOR MARGINS, FLEX, VISIBILITY
---------------------------------------------------- */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-60 { margin-top: 60px; }

/* ---------------------
   PRINT FRIENDLY RESET
---------------------- */
@media print {
  *, *:before, *:after {
    background: #fff !important;
    color: #232b36 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}

/* ---------------------------------------------
   ACCESSIBILITY FOCUS & ACTIVE OUTLINES
---------------------------------------------- */
:focus {
  outline: 2.5px solid #3282B8;
  outline-offset: 2px;
}

/* ----------------------------------------------
   SCROLLBARS - Industrial Modern (styled, optional)
----------------------------------------------- */
body::-webkit-scrollbar {
  width: 12px;
  background: #232b36;
}
body::-webkit-scrollbar-thumb {
  background: #17304D;
  border-radius: 7px;
  border: 3px solid #232b36;
}

/* SCROLL SMOOTHING */
html {
  scroll-behavior: smooth;
}

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