/* =====================
  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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  background-color: #101724;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #101724;
  color: #ECEEFF;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
::-webkit-scrollbar {
  width: 12px;
  background: #182848;
}
::-webkit-scrollbar-thumb {
  background-color: #14386A;
  border-radius: 8px;
}
a {
  color: #F7B32B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
  text-shadow: 0 0 6px #F7B32B88;
}

/* =====================
    FONT IMPORTS
====================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* =====================
     UTILITIES
====================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.text-section {
  background-color: #182848;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 #11182933;
  padding: 40px 24px;
  margin-bottom: 32px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}

.card {
  background: #131c2a;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 #14386a33;
  color: #ECEEFF;
  position: relative;
  transition: box-shadow 0.26s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 36px 0 #F7B32B66, 0 2px 16px 0 #14386ad6;
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  gap: 10px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 20px 0 28px 0;
  background: #fff;
  color: #14386A;
  border-radius: 18px;
  box-shadow: 0 2px 14px #f7b32b22, 0 2px 8px #14386a11;
  transition: box-shadow 0.22s, transform 0.15s;
}
.testimonial-card blockquote {
  font-size: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  margin-right: 24px;
}
.testimonial-card p {
  font-size: 16px;
  font-style: normal;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin: 0;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px #f7b32baa, 0 2px 10px #14386a33;
  transform: scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* =====================
    TYPOGRAPHY
====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.25rem;
}

p, ul, ol, li {
  font-size: 1rem;
  color: #ECEEFF;
}
ul, ol {
  padding-left: 28px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 12px;
  position: relative;
}
ul li img {
  vertical-align: middle;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  margin-bottom: 0px;
}
ul li strong {
  color: #F7B32B;
}

/* =====================
    HEADER & NAV
====================== */
header {
  background: #151d2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 2px solid #182848;
  position: relative;
  z-index: 20;
}
.logo-link img {
  height: 48px;
  margin-right: 8px;
  display: block;
}
.main-navigation {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-navigation a {
  color: #ECEEFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  text-shadow: 0 1px 6px #11182960;
  transition: background 0.2s, color 0.2s;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #f7b32b;
  color: #14386A;
  box-shadow: 0 0 12px #f7b32baa, 0 2px 4px #14386a33;
}
.main-navigation .cta.primary {
  background: #f7b32b;
  color: #14386A;
  font-weight: 800;
  box-shadow: 0 0 11px #f7b32b55, 0 2px 8px #14386a18;
  border-radius: 10px;
  padding: 9px 20px;
  margin-left: 16px;
  transition: background 0.25s, color 0.25s, box-shadow 0.2s;
}
.main-navigation .cta.primary:hover, .main-navigation .cta.primary:focus {
  background: #14386A;
  color: #fff;
  box-shadow: 0 0 16px #f7b32bbb, 0 3px 12px #14386a40;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 30;
  transition: color 0.13s;
}
.mobile-menu-toggle:focus {
  color: #F7B32B;
  outline: none;
}

/* =====================
     MOBILE MENU
====================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 56, 106, 0.98);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.4,.79,.65,1) 0s;
  will-change: transform;
  box-shadow: 2px 0 36px #18284895;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 24px 35px 12px 0;
  cursor: pointer;
  z-index: 1051;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7B32B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 20px;
  padding: 5vh 30px 0 30px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 24px 10px 0;
  border-bottom: 2px solid #182848;
  border-radius: 0 0 12px 0;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f7b32b;
  color: #14386A;
  box-shadow: 0 0 8px #f7b32b66, 0 3px 6px #11182922;
}

/* =====================
    BUTTONS & CTA
====================== */
.cta,
button,
input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #14386A;
  background: #f7b32b;
  box-shadow: 0 0 12px #f7b32b44, 0 3px 11px #14386a18;
  padding: 12px 28px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.11s;
  margin-top: 14px;
  margin-bottom: 4px;
}
.cta.primary:hover, .cta:hover,
button:hover {
  background: #14386A;
  color: #fff;
  box-shadow: 0 0 24px #f7b32b99, 0 3px 18px #14386a41;
  transform: scale(1.03);
}
.cta.primary:focus, button:focus {
  outline: 2px solid #f7b32b;
}

/* =====================
    CONTENT SPACING
====================== */
.content-wrapper {
  padding: 36px 24px 36px 24px;
  background: rgba(26, 38, 65, 0.53);
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 #14386a2a;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.content-wrapper:last-child {
  margin-bottom: 0;
}
.feature-item:last-child {
  margin-bottom: 0;
}

/* =====================
    FOOTER
====================== */
footer {
  background: #151d2a;
  padding: 32px 20px 20px 20px;
  border-top: 2px solid #182848;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-navigation {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-navigation a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #ECEEFF;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #f7b32b;
  color: #14386A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: #FFF;
  font-size: 15px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.footer-contact img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}

/* =====================
    COOKIE BANNER
====================== */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3010;
  background-color: #14386A;
  color: #fff;
  padding: 22px 20px;
  box-shadow: 0 -2px 32px #182848ab;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(.47,1.64,.41,.8), opacity 0.28s;
  font-size: 1rem;
}
#cookie-banner.hide, .cookie-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  border: none;
  border-radius: 9px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
}
.cookie-accept {
  background: #F7B32B;
  color: #14386A;
  box-shadow: 0 0 7px #f7b32b58;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #14386A;
  color: #fff;
}
.cookie-reject {
  background: #1b1f3a;
  color: #fff;
  border: 1px solid #f7b32b88;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F7B32B;
  color: #14386A;
}
.cookie-settings {
  background: #182848;
  color: #f7b32b;
  border: 1px solid #f7b32b99;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #f7b32b;
  color: #14386A;
}

/* COOKIE MODAL */
#cookie-modal, .cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(14,22,33,0.78);
  z-index: 3099;
  align-items: center;
  justify-content: center;
}
#cookie-modal.active, .cookie-modal.active {
  display: flex;
  animation: fadeIn 0.18s linear forwards;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: #131c2a;
  color: #ECEEFF;
  border-radius: 16px;
  max-width: 420px;
  width: 94vw;
  padding: 2.1rem 2rem 1.9rem 2rem;
  box-shadow: 0 6px 32px #14386a77;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f7b32b;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F7B32B;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F7B32B;
}
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #182848;
  border-radius: 9px;
  position: relative;
  outline: none;
  transition: background 0.14s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #F7B32B;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 7px;
  transition: left 0.15s, background 0.15s;
}
.cookie-toggle:checked::before {
  left: 15px;
  background: #14386A;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  border-radius: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: #F7B32B;
  color: #14386A;
  border: none;
  padding: 10px 24px;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #14386A;
  color: #fff;
}

.cookie-modal .cookie-category input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =============================
   NEON & FUTURISTIC ACCENTS
============================= */
/* Neon border underlines, glows, and active elements */
.cta, .card, .content-wrapper, .text-section {
  box-shadow: 0 0 18px #f7b32b44, 0 0px 20px #14386a13;
}
.cta.primary, button.primary, .main-navigation .cta.primary {
  border: 2px solid #fff5;
  box-shadow: 0 0 16px #f7b32baa, 0 0px 18px #14386a66;
}
body, html {
  /* Futuristic color bg - soft blue, not a heavy gradient */
  background: #101724;
}
header {
  border-bottom: 2px solid #F7B32B44;
}
.section {
  background: #151d2a;
}
.text-section {
  border-left: 5px solid #F7B32B;
  border-top: 1px solid #f7b32b44;
}
h1, h2, h3 {
  text-shadow: 0 6px 24px #F7B32B22, 0 1px 8px #14386a22;
}
blockquote {
  border-left: 4px solid #f7b32b;
  padding-left: 16px;
  font-style: italic;
}

/* =====================
    RESPONSIVE RULES
====================== */
@media (max-width: 1080px) {
  .container {
    max-width: 94vw;
  }
  .content-wrapper, .text-section {
    padding: 28px 8px 28px 8px;
  }
}
@media (max-width: 900px) {
  .main-navigation a, .footer-navigation a {
    font-size: 15px;
    padding: 6px 8px;
  }
  .footer-contact {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, .text-section, .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .card-container, .content-grid, .footer-navigation {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-navigation {
    align-items: center;
    justify-content: flex-start;
  }
  .footer-contact {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  header {
    padding: 11px 7px;
  }
  .footer-contact img {
    width: 36px;
    height: 36px;
  }
  .cookie-modal-content {
    padding: 1.2rem 0.6rem 1.1rem 0.6rem;
    font-size: 13px;
  }
}

/* =====================
   ANIMATIONS & TRANSITIONS
====================== */
.cta, button, .main-navigation a, .footer-navigation a, .mobile-nav a {
  transition: all 0.21s cubic-bezier(.45,.05,.55,.95);
}
.card, .testimonial-card, .text-section, .content-wrapper {
  transition: box-shadow 0.25s, transform 0.16s;
}

/* =====================
    FORM ELEMENTS
====================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 11px 16px;
  border-radius: 7px;
  border: 1px solid #182848;
  outline: none;
  background: #1b2736;
  color: #ECEEFF;
  margin-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.17s, box-shadow 0.12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #f7b32b;
  box-shadow: 0 0 7px #f7b32bb1;
}

/* =====================
   MISC CLASSES/HELPERS
====================== */
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.gap-24 { gap: 24px; }

/* =====================
   PRINT SUPPORT
====================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, #cookie-banner, .cookie-modal, #cookie-modal {
    display: none !important;
  }
  .section, .content-wrapper, .text-section {
    background: none !important;
    color: #111 !important;
    box-shadow: none !important;
    border: none !important;
  }
}

/* =====================
  BRAND PERSONALIZATION
====================== */
::selection {
  background: #f7b32b;
  color: #14386A;
}

/* ========== END OF CSS ========== */
