/* ===============================================================
   Brave Zenith - tech_futuristic CSS for all pages (mobile-first)
   =============================================================== */
/* 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 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #141D32;
  color: #F7F7F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #192949 0%, #142032 100%);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #F7F7F7;
  line-height: 1.7;
  position: relative;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #35B7A8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #32fbdf;
}
ul,[role="list"] {
  list-style: none;
}

/* BRAND TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #35B7A8;
  letter-spacing: 0.01em;
  text-shadow: 0 0 12px #20988899, 0 6px 48px #142A4799;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #F7F7F7;
  text-shadow: 0 0 8px #35B7A877;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #32fbdf;
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
  color: #35B7A8;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #EAF2FC;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s, color 0.18s;
  box-shadow: 0 4px 24px 0 #35B7A880, 0 0 0 #0000;
  margin-top: 18px;
  background: #35B7A8;
  color: #141D32;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #32fbdf;
  color: #141D32;
  box-shadow: 0 4px 32px #32fbdf90;
  outline: none;
  transform: translateY(-2px) scale(1.035);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #35B7A8;
  color: #35B7A8;
  margin-left: 12px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #35B7A8;
  color: #141D32;
  transform: none;
  box-shadow: 0 2px 24px 0 #35B7A880;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: rgba(24,42,71, 0.75);
  box-shadow: 0 4px 24px #0c142166;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.card {
  margin-bottom: 20px;
  border-radius: 16px;
  background: #182A47;
  position: relative;
  box-shadow: 0 2px 16px #1ec0bdaa;
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 220px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 4px 36px #32fbdfa8, 0 0.5px 0.5px #35B7A8aa;
  transform: translateY(-3px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0 20px 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F7F7F7;
  color: #182A47;
  border-radius: 16px;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 32px #1ec0bd44, 0 2px 8px #0003;
  text-align: center;
  min-width: 240px;
  max-width: 410px;
}
.testimonial-card span {
  color: #35B7A8;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.testimonial-card p {
  color: #182A47;
  font-size: 0.99rem;
  min-height: 40px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* SPECIAL TAGS */
.guide-tag, .update-tag {
  display: inline-block;
  font-size: 0.91rem;
  border-radius: 8px;
  padding: 4px 12px;
  font-weight: 500;
  color: #141D32;
  background: #32fbdf;
  margin: 2px 8px 2px 0;
  box-shadow: 0 1.5px 12px #1ec0bd55;
}
.update-tag {
  background: #35B7A8;
  color: #141D32;
}

/* HEADER + NAVIGATION */
header {
  width: 100%;
  background: #182A47;
  box-shadow: 0 2px 16px #0c142166;
  padding: 0;
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header a img {
  height: 46px;
  width: auto;
  margin-right: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 0 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  color: #F7F7F7;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #223052;
  color: #32fbdf;
}
header .btn-primary {
  margin-left: 14px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #32fbdf;
  padding: 7px 10px 8px 10px;
  cursor: pointer;
  margin-left: 12px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  z-index: 51;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #222;
  color: #fff;
  outline: none;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #0f1626ee;
  box-shadow: 4px 0 32px #35b7a844, 0 12px 32px #32fbdf33;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.18,.78,.32,1.01);
  z-index: 108;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: #32fbdf;
  cursor: pointer;
  border-radius: 12px;
  padding: 7px 14px;
  transition: background 0.17s;
  z-index: 109;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #223052;
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 82px 24px 32px 28px;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}
.mobile-nav a {
  color: #F7F7F7;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 550;
  padding: 13px 0 13px 0;
  border-radius: 6px;
  border-bottom: 1px solid #233;
  transition: background 0.15s, color 0.14s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #223052;
  color: #32fbdf;
  outline: none;
}
@media(min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}
@media(max-width: 991px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}

/* MAIN, SECTION, FOOTER */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  background: rgba(24,42,71, 0.86);
  box-shadow: 0 4px 32px #142A4780;
}
footer {
  margin-top: 60px;
  background: #182A47;
  color: #F7F7F7;
  padding: 32px 0 22px 0;
  width: 100%;
  box-shadow: 0 -2px 14px #0c142150;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.97rem;
  color: #aaa;
}
footer nav a {
  color: #32fbdf;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  background: #233;
  outline: none;
}
footer .text-section {
  text-align: center;
  font-size: 0.97rem;
  color: #F7F7F7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .text-section img {
  height: 1.1em;
  width: 1.1em;
  vertical-align: middle;
  margin-right: 6px;
}

/* LISTS, ULs and LIs */
ul {
  margin: 0 0 4px 0;
  padding: 0 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
ul li {
  position: relative;
  padding-left: 26px;
  font-size: 1.03em;
  color: #EAF2FC;
  letter-spacing: 0.01em;
}
ul li img {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
ul li strong {
  color: #32fbdf;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  section, .section {
    padding: 24px 7px;
    border-radius: 10px;
    margin-bottom: 36px;
  }
  h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column !important;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: unset;
    padding: 14px 6px;
    font-size: 1rem;
  }
  footer .container, footer .content-wrapper {
    gap: 18px;
  }
}

/* Spacing between cards/sections */
.card, .testimonial-card, .section {
  margin-bottom: 20px;
}
section:last-child, .section:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/* Animations and effects */
.btn-primary, .btn-secondary, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
}
.card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 34px #32fbdfa2, 0 1px 2px #35b7a888;
  transform: translateY(-3px) scale(1.03);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #141D32;
  color: #F7F7F7;
  width: 100vw;
  z-index: 999;
  box-shadow: 0 -4px 28px #32FBDF33;
  padding: 18px 8px 18px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  animation: cookieFadeIn 0.7s cubic-bezier(.41,1.11,.7,1) 1;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(32px); }
  100%{ opacity: 1; transform: none; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  padding: 8px 22px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  margin: 0 3px;
}
.cookie-banner .btn-accept {
  background: #32fbdf;
  color: #141D32;
  box-shadow: 0 2px 8px #32FBDF60;
}
.cookie-banner .btn-reject {
  background: transparent;
  color: #32fbdf;
  border: 2px solid #32fbdf;
}
.cookie-banner .btn-settings {
  background: #182A47;
  color: #32fbdf;
  border: 2px solid #32fbdf;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #182A47;
  color: #32fbdf;
  outline: none;
}
.cookie-modal-overlay {
  position: fixed;
  z-index: 1101;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #141D32bb;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #1A2442;
  color: #F7F7F7;
  border-radius: 14px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 8px 34px #32fbdfa2, 0 2px 12px #142A4799;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalPop 0.34s cubic-bezier(.41,1.11,.7,1) 1;
}
@keyframes cookieModalPop {
  0% { opacity: 0; transform: scale(0.89); }
  100%{ opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 18px;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #32fbdf;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #32fbdf19;
}
.cookie-modal h2 {
  font-size: 1.19rem;
  color: #32fbdf;
  margin-bottom: 10px;
  text-shadow: none;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 1em;
  border-radius: 7px;
  padding: 9px 0;
}
.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #32fbdf;
}
.cookie-category .label-essential {
  color: #B8C2EE;
  font-weight: 600;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row; 
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .btn-modal-save {
  background: #35B7A8;
  color: #182A47;
  border: none;
  font-weight: 600;
  font-size: 1em;
  border-radius: 24px;
  padding: 8px 30px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .btn-modal-cancel {
  background: transparent;
  color: #32fbdf;
  border: 2px solid #32fbdf;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .btn-modal-save:hover, .cookie-modal .btn-modal-save:focus { background: #32fbdf; color: #141D32; }
.cookie-modal .btn-modal-cancel:hover, .cookie-modal .btn-modal-cancel:focus { background: #182A47; color: #32fbdf; }

/* Accessibility and Visual Consistency */
:focus {
  outline: 2px solid #35B7A8;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 8px;
  background: #182A47;
}
::-webkit-scrollbar-thumb {
  background: #32fbdf77;
  border-radius: 10px;
}

/* Hide cookies/modal by default, show with class */
.cookie-banner, .cookie-modal-overlay {
  display: none;
}
.cookie-banner.show {
  display: flex;
}
.cookie-modal-overlay.show {
  display: flex;
}

/* Utility classes */
.d-none { display: none!important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.gap-12 { gap: 12px !important; }

/* Quintessential tech_futuristic extras */
.neon-text {
  color: #32fbdf;
  text-shadow: 0 0 8px #35B7A8, 0 0 18px #32fbdf55, 0 1.5px 20px #1ec0bd77;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}
.glow-bg {
  background: #192949;
  box-shadow: 0 0 44px 4px #32fbdf44, 0 0 0 #fff0;
}
.shadowed {
  box-shadow: 0 4px 32px #142A4777;
}
.rounded {
  border-radius: 18px;
}

/* END Brave Zenith style.css */
