/* RESET & NORMALIZE (basic modern) */
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;
  box-sizing: border-box;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  background: #101728;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #e6eaf0;
  background: linear-gradient(135deg, #112242 0%, #153C6C 80%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F0A202;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F5D063;
  outline: none;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.2;
  color: #FAFAFA;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 18px; }
h4 { font-size: 1.25rem; margin-bottom: 14px; }
p, ul, ol { margin-bottom: 14px; }
ul, ol { padding-left: 20px; }
ul li, ol li { margin-bottom: 8px; }
strong { color: #F0A202; }
/* Utility Colors */
:root {
  --vs-primary: #153C6C;
  --vs-secondary: #F0A202;
  --vs-accent: #FAFAFA;
  --vs-bg: #101728;
  --vs-card-bg: #16203A;
  --vs-card-shadow: 0 2px 12px 0 rgba(15,36,78,0.18);
  --vs-border: #2552A4;
  --vs-neon: #29A4FF;
}

/* Container/Wrapper Layouts */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER STYLES & NAVIGATION */
header {
  background: rgba(21,60,108, 0.8);
  box-shadow: 0 0 8px 0 rgba(29,60,109,0.12);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  color: #FAFAFA;
  opacity: 0.88;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 6px;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--vs-secondary);
  color: #153C6C;
  opacity: 1;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #F0A202;
  cursor: pointer;
  margin-left: 10px;
  display: none;
  z-index: 120;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #fff1b3;
}
/* Mobile Main Navigation */
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,23,40,0.98);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.77,0,0.175,1);
  z-index: 200;
  box-shadow: -6px 0 32px 0 rgba(21,60,108,0.18);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F0A202;
  font-size: 2.15rem;
  margin: 26px 24px 16px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 210;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff1b3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 12px 32px;
}
.mobile-nav a {
  color: #FAFAFA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  padding: 10px 0;
  transition: color 0.2s, background 0.17s;
  border-radius: 5px;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #101728;
  background: var(--vs-secondary);
}

/* --- HERO & SECTIONS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section:last-child {
  margin-bottom: 0;
}

/* --- CARDS & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 36px;
}
.card {
  background: var(--vs-card-bg);
  border-radius: 18px;
  box-shadow: var(--vs-card-shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  color: #FAFAFA;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--vs-border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #27FFFF80, 0 2px 16px 0 #153C6C33;
  border-color: #29A4FF;
}
.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: #fafafa;
  color: #153C6C;
  box-shadow: 0 3px 18px 0 #153C6C22;
  border-radius: 16px;
  margin-bottom: 20px;
  min-width: 220px;
  border-left: 4px solid #29A4FF;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card span:last-child {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #F0A202;
  font-size: 1.1rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 0 #29A4FF33, 0 1px 6px 0 #153C6C11;
  border-color: #F0A202;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 36px;
  font-size: 1.12rem;
  border: none;
  border-radius: 48px;
  box-shadow: 0 3px 16px 0 #00000044, 0 0px 0 3px #29A4FF33 inset;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.17s, transform 0.13s;
}
.btn-primary {
  color: #153C6C;
  background: linear-gradient(90deg, #F0A202, #fff7e1);
  box-shadow: 0 6px 24px 0 #153C6C1A;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #fff1b3, #F0A202);
  color: #1e1730;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  color: #F0A202;
  background: #153C6C;
  border: 2px solid #F0A202;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #1a428a;
  color: #FFF;
  transform: translateY(-2px) scale(1.03);
  border-color: #F5D063;
}

/* ICONS IN LISTS */
ul li img,
ol li img {
  width: 28px;
  height: 28px;
  margin-right: 13px;
  vertical-align: middle;
  filter: drop-shadow(0 0 3px #29A4FF66);
}
ul li,
ol li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- FOOTER --- */
footer {
  background: #101728;
  border-top: 2px solid #153C6C;
  padding: 24px 0 14px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav a {
  color: #F0A202;
  font-size: 15px;
  padding-bottom: 1.5px;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #fff1b3;
  text-decoration: underline;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 4px #29A4FF88);
}
.footer-info {
  color: #FAFAFA;
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

/* ------- COOKIE CONSENT BANNER ------- */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #153C6C;
  color: #FAFAFA;
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  z-index: 9999;
  padding: 20px 32px 20px 24px;
  box-shadow: 0 -2px 20px 0 #153C6C66;
  font-size: 15px;
  transition: transform 0.22s cubic-bezier(.7,.3,.23,.88), opacity 0.15s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner strong {
  color: #F0A202;
  font-weight: 700;
}
.cookie-banner .cookie-btn {
  margin-left: 4px;
  margin-right: 4px;
  padding: 7px 18px;
  border: none;
  border-radius: 22px;
  background: linear-gradient(90deg, #29A4FF, #F0A202 75%);
  color: #181B35;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.17s;
  box-shadow: 0 3px 18px 0 #29A4FF44,0 1px 4px #FAFAFA11;
}
.cookie-banner .cookie-btn:hover {
  background: linear-gradient(90deg, #F0A202, #29A4FF 75%);
  color: #081732;
}
.cookie-banner .cookie-btn.secondary {
  background: #101728;
  color: #F0A202;
  border: 1.5px solid #29A4FF;
}
.cookie-banner .cookie-btn.secondary:hover {
  background: #153C6C;
  color: #FAFAFA;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 10000;
  background: rgba(15,22,36,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #16203A;
  color: #FAFAFA;
  padding: 36px 30px 32px 30px;
  min-width: 290px;
  max-width: 98vw;
  border-radius: 20px;
  box-shadow: 0 6px 32px #153C6C66;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  color: #F0A202;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #202946;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  margin-left: 6px;
}
.cookie-modal .cookie-toggle.enabled {
  background: linear-gradient(90deg, #29A4FF 65%, #F0A202 100%);
}
.cookie-modal .cookie-toggle .dot {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 8px;
  background: #fafafa;
  transition: left 0.17s, background 0.17s;
}
.cookie-modal .cookie-toggle.enabled .dot {
  left: 19px;
  background: #F0A202;
}
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #F0A202;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #fff1b3;
}
.cookie-modal .cookie-category strong {
  color: #29A4FF;
  font-weight: bold;
}

/* --- RESPONSIVE/TABLET/MOBILE QUERIES --- */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  .content-wrapper {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 900px) {
  .content-wrapper {
    max-width: 98vw;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .section {
    padding: 40px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card {
    min-width: unset;
    padding: 18px 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-brand img {
    width: 38px;
    height: 38px;
  }
  .footer-info {
    font-size: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    padding: 14px 10px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 18px 2px;
  }
  .footer-brand img {
    width: 32px;
    height: 32px;
  }
  .card, .testimonial-card {
    border-radius: 11px;
    padding: 13px 8px;
  }
  .btn-primary, .btn-secondary {
    padding: 9px 18px;
    font-size: 1em;
  }
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
@keyframes neonPulse {
  0% {
    box-shadow: 0 0 8px #29A4FF44;
  }
  60% {
    box-shadow: 0 0 16px #29A4FF99, 0 0 36px #F0A20233;
  }
  100% {
    box-shadow: 0 0 8px #29A4FF44;
  }
}
.btn-primary, .btn-secondary {
  animation: neonPulse 3s infinite alternate; /* subtle neon effect */
}
.testimonial-card {
  animation: neonPulse 4.2s infinite alternate;
}
/* --- SELECTION FOR BRAND ACCESSIBILITY --- */
::selection {
  background: #F0A202;
  color: #153C6C;
}

/* --- CUSTOM SCROLLBAR FOR DARK BG --- */
::-webkit-scrollbar { width: 9px; background: #16203A;}
::-webkit-scrollbar-thumb { background: #2552A4; border-radius: 7px;}
::-webkit-scrollbar-thumb:hover { background: #29A4FF;}

/* --- INPUTS, FORMS, LABELS (General for possible future use) --- */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #29A4FF;
}

/* --- MISC --- */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #153C6C 44%, #F0A202 100%);
  margin: 22px 0;
  border-radius: 2px;
}

/* --- Z-INDEX RULES --- */
header { z-index: 1000; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 9999; }
.cookie-modal { z-index: 10000; }

/* --- FLEX-ONLY LAYOUTS (NO GRID, NO COLUMNS) --- */
/* Already applied throughout above rules. */

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid #29A4FF;
  outline-offset: 2px;
}

/* ---- END --- */
