/* ---------------- 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #191a22;
  color: #e5e7e9;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #00a9b7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffc600;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1em;
  padding-left: 1em;
}
strong { font-weight: 700; }

/*----------------- INDUSTRIAL MODERN FONTS -----------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fafbfc;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1.3em;
  font-size: 1rem;
}

/*------------------ GLOBAL SPACING & LAYOUT ---------------*/
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #21244d;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(17,17,17,0.16), 0 2px 8px rgba(255,198,0,0.04);
  border: 1px solid #222438;
}

/*----------------- FLEX CONTAINER PATTERNS ----------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232638;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.13);
  border: 1px solid #30334f;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(0,169,183,0.13), 0 1.5px 8px rgba(255,198,0,0.06);
  transform: translateY(-4px) scale(1.02);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fcfcfa;
  color: #222438;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(33, 36, 77, 0.04);
  border: 1px solid #dddddd;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 380px;
  font-size: 1.07rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #00a9b7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*------------------- HEADER -------------------*/
header {
  width: 100%;
  background: #191a22;
  border-bottom: 2px solid #232638;
  box-shadow: 0 2px 14px rgba(21,22,30,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 70px;
}
.logo img {
  height: 54px;
  width: auto;
  filter: brightness(1.13) contrast(1.02) drop-shadow(0 2px 8px #23263899);
  transition: filter 0.24s;
}
.logo img:hover {
  filter: brightness(1.3) drop-shadow(0 4px 24px #00a9b7);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fafbfc;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #ffc600;
  border-bottom: 2px solid #ffc600;
}
.main-nav .cta-btn {
  background: #00a9b7;
  color: #21244d;
  padding: 8px 28px;
  margin-left: 16px;
  border-radius: 22px;
  text-transform: uppercase;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  box-shadow: 0 2px 8px rgba(0,169,183,0.20);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  position: relative;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #ffc600;
  color: #21244d;
  box-shadow: 0 6px 24px 0 rgba(255,198,0,0.18);
  transform: scale(1.06);
}
.mobile-menu-toggle {
  display: none;
  background: #191a22;
  color: #ffc600;
  border: none;
  font-size: 2.3rem;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(21,22,30,0.11);
  cursor: pointer;
  margin-left: 18px;
  z-index: 1100;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #232638;
  color: #00a9b7;
}

/*------------------- MOBILE MENU -------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(21,22,30,0.97);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.7,.2,.25,1.1);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #ffc600;
  font-size: 2.3rem;
  cursor: pointer;
  padding: 22px 28px;
  align-self: flex-end;
  margin-bottom: 12px;
  margin-right: 12px;
  z-index: 2100;
  transition: color 0.22s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #00a9b7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 32px;
}
.mobile-nav a {
  color: #fafbfc;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 6px;
  width: 100%;
  border-bottom: 1px solid #232638;
  transition: background 0.16s, color 0.14s;
  border-radius: 7px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #232638;
  color: #ffc600;
}
@media (max-width: 1100px) {
  .container { max-width: 100%; padding: 0 2vw; }
  .main-nav { gap: 16px; }
  .main-nav .cta-btn { padding: 8px 16px; margin-left: 8px; }
}
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; }
  .main-nav .cta-btn { font-size: 1rem; }
}
@media (max-width: 870px) {
  .main-nav { gap: 8px; }
}
@media (max-width: 830px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 650px) {
  .logo img { height: 38px; }
}

/*-------------------- HERO SECTIONS --------------------*/
.hero {
  background: linear-gradient(115deg, #232638 70%, #191a22 100%);
  padding: 40px 0 40px 0;
  border-bottom: 3px solid #232638;
}
.hero .container {
  min-height: 210px;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.hero h1 {
  color: #ffc600;
  text-shadow: 0 3px 22px #23263888, 0 1.5px 6px #00a9b7ee;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero p {
  color: #fafbfc;
  font-size: 1.20rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/*-------------------- SECTIONS - GENERAL --------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
}
section h2 {
  color: #ffc600;
  font-size: 1.65rem;
  text-shadow: 0 1.5px 8px #21244d55;
}
section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
section ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  padding: 6px 0;
}
section ul li img {
  height: 32px;
  width: 32px;
  border-radius: 7px;
  background: #111119;
  border: 1.7px solid #30334f;
  box-shadow: 0 3px 10px #23263811;
}
section .content-wrapper {
  margin-top: 10px;
}

/*-------------------- CARDS & CARD-GRIDS --------------------*/
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232638;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.13);
  border: 1px solid #30334f;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(0,169,183,0.13), 0 1.5px 8px rgba(255,198,0,0.06);
  transform: translateY(-4px) scale(1.02);
}

/*------------------- CTA BUTTONS --------------------*/
.cta-btn {
  display: inline-block;
  background: #ffc600;
  color: #21244d;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 38px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(255,198,0,0.11);
  margin-top: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.18s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #00a9b7;
  color: #fafbfc;
  box-shadow: 0 4px 24px rgba(0,169,183,0.15);
  transform: scale(1.045);
}
.cta-btn:active {
  background: #21244d;
  color: #ffc600;
}

/*-------------------- TABLES --------------------*/
table {
  background: #2b2e49;
  border-radius: 11px;
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0 22px 0;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,169,183,0.06);
}
table th, table td {
  padding: 12px 16px;
  text-align: left;
}
table th {
  background: #21244d;
  color: #ffc600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  font-size: 1.1rem;
  border-bottom: 3px solid #00a9b7;
}
table td {
  border-bottom: 1px solid #31365a;
  color: #e5e7e9;
}
table tr:last-child td { border-bottom: none; }
table tr:hover { background: #222438; }

/*-------------------- TESTIMONIALS --------------------*/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.testimonial-card {
  min-width: 220px;
  flex: 1 1 280px;
  max-width: 380px;
  margin: 0 0 20px 0;
  transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 0 0 4px #00a9b725;
  transform: translateY(-2px) scale(1.03);
}

/*-------------------- FOOTER --------------------*/
footer {
  background: #191a22;
  padding: 38px 0 22px 0;
  border-top: 2px solid #232638;
  box-shadow: 0 -1px 12px #21244d22;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer-nav, .footer-legal, .footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}
.footer-nav a, .footer-legal a {
  color: #e5e7e9;
  font-size: 1rem;
  letter-spacing: 0.015em;
  padding: 3px 7px;
  transition: color 0.17s, border-bottom 0.16s;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #ffc600;
  border-bottom: 2px solid #ffc600;
}
.footer-social img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.76) brightness(1.2);
  transition: filter 0.19s, transform 0.11s;
}
.footer-social a:hover img {
  filter: grayscale(0) drop-shadow(0 0 10px #00a9b7);
  transform: scale(1.13);
}
.footer-company {
  color: #636a90;
  font-size: 0.97rem;
  margin-top: 2px;
  text-align: center;
}

/*-------------------- COOKIE CONSENT BANNER + MODAL --------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #21244d;
  color: #fafbfc;
  font-size: 1rem;
  padding: 24px 18px 20px 18px;
  z-index: 3000;
  box-shadow: 0 -4px 32px #23263828, 0 -2px 10px #00a9b777;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  animation: cookie-banner-in 0.4s cubic-bezier(.7,.2,.29,1.1) 1;
  transition: transform 0.35s, opacity 0.28s;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0.33; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner span, .cookie-banner p {
  flex: 1 1 360px;
  color: #fafbfc;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #ffc600;
  color: #21244d;
  padding: 10px 22px;
  border-radius: 22px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  font-size: 1.01rem;
  transition: background 0.18s, color 0.14s, transform 0.12s;
  box-shadow: 0 2px 9px rgba(255,198,0,0.14);
}
.cookie-btn.reject {
  background: #232638;
  color: #ffc600;
  border: 1.5px solid #ffc600;
}
.cookie-btn.settings {
  background: #00a9b7;
  color: #fafbfc;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #00a9b7;
  color: #ffc600;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #ffc600;
  color: #232638;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,36,77,0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3050;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.29s;
  animation: cookie-modal-in 0.4s cubic-bezier(.7,.25,.39,1.15) 1;
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fcfcfa;
  color: #21244d;
  padding: 36px 31px 31px 31px;
  border-radius: 18px;
  box-shadow: 0 4px 42px 0 #191a22cc;
  min-width: 310px;
  max-width: 96vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #21244d;
  font-size: 1.33rem;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  justify-content: space-between;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #00a9b7;
  border-radius: 5px;
}
.cookie-modal-category .always-on {
  color: #00a9b7;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.99rem;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #21244d;
  cursor: pointer;
  z-index: 2;
  padding: 5px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #00a9b7;
}
.cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/*-------------------- RESPONSIVE QUERIES --------------------*/
@media (max-width: 1050px) {
  .section, section {
    padding: 30px 5vw;
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.43rem; }
}
@media (max-width: 768px) {
  .section, section {
    padding: 18px 0.5em;
    margin-bottom: 28px;
  }
  .card-container, .card-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .hero {
    padding: 30px 0;
  }
  .testimonial-card {
    min-width: 140px;
    padding: 15px;
    font-size: 0.97rem;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.18rem; }
  .hero {
    border-radius: 0;
    padding: 20px 0 20px 0;
  }
  .footer-nav, .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
  .footer-social {
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 16px 8px 12px 8px;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 440px) {
  .hero h1 { font-size: 1.09rem; }
  .section, section { padding: 9px 2px; margin-bottom: 16px; }
}

/*-------------------- SPECIAL LAYOUTS --------------------*/
.confirmation .content-wrapper { align-items: center; text-align: center; }
.brand-promise .content-wrapper { align-items: flex-start; }
.about .content-wrapper, .team .content-wrapper { align-items: flex-start; }

/*-------------------- MISC -------------------*/
.text-section {
  background: #222438;
  color: #fafbfc;
  padding: 14px 16px;
  border-radius: 13px;
  margin-top: 9px;
  margin-bottom: 14px;
}
.map .content-wrapper {
  align-items: center;
}

/*-------------------- FOCUS STATES --------------------*/
:focus {
  outline: 2.2px solid #00a9b7;
  outline-offset: 3px;
  transition: outline 0.13s;
}

/*-------------------- HIDE SCROLLBAR FOR MODAL --------------------*/
body.cookie-modal-open {
  overflow: hidden;
}

/*-------------------- PRINT --------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #222438; }
}
