/* 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, menu, 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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #101C2A;
  color: #E6E6E6;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
* {
  box-sizing: inherit;
}
a {
  color: #F0A202;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFEC8B;
  outline: none;
}
ul, ol {
  margin-left: 2em;
  margin-top: 14px;
  margin-bottom: 14px;
}
li {
  margin-bottom: 10px;
  list-style: disc inside;
}
/* TYPOGRAPHY ---------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  color: #F0A202;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 18px; }
h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }
h5, h6 { font-size: 1rem; margin-bottom: 10px; }
p {
  margin-bottom: 14px;
  color: #E6E6E6;
  letter-spacing: 0.01em;
}
strong, b {
  font-weight: bold;
  color: #F0A202;
}
small {
  font-size: 0.9rem;
  color: #B6BAC0;
}
/* MAIN CONTAINER, LAYOUTS ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #172B41;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(20,30,45,0.20);
}
/* HERO SECTION ---------------------------------------------------- */
.hero {
  background: linear-gradient(100deg,#163146 80%, #0A1929 100%);
  box-shadow: 0 8px 36px 0 rgba(22,49,70,0.24);
  border-radius: 0 0 26px 26px;
  position: relative;
  margin-bottom: 60px;
}
.hero .container {
  padding-top: 62px;
  padding-bottom: 62px;
}
.hero h1,
.hero h2 {
  color: #fff;
}
.hero p {
  color: #E6E6E6;
  font-size: 1.125rem;
  margin-bottom: 12px;
}
/* BUTTONS ---------------------------------------------------- */
.btn-primary,
.btn-primary:visited {
  display: inline-block;
  min-width: 180px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-family: 'Roboto Slab','Open Sans',Arial,sans-serif;
  font-weight: 600;
  background: #F0A202;
  color: #163146;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px 0 rgba(240,162,2,0.20);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  letter-spacing: 0.03em;
  text-align: center;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FFB838;
  color: #101C2A;
  box-shadow: 0 8px 32px 2px rgba(240,162,2,0.24);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}
/* FLEX CARD CONTAINERS ---------------------------------------------------- */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #192B3B;
  box-shadow: 0 4px 24px 0 rgba(18,40,58,0.10);
  padding: 24px;
  color: #E6E6E6;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
/* TESTIMONIALS ---------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5F7FB;
  color: #222B38;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(80,120,167,0.10);
  font-size: 1.1rem;
  position: relative;
  border-left: 5px solid #F0A202;
}
.testimonial-card strong {
  color: #163146;
  font-size: 1rem;
  margin-left: 10px;
}
/* LIST ICONS ---------------------------------------------------- */
ul li img,
ul li svg {
  vertical-align: middle;
  width: 1.1em;
  height: 1.1em;
  margin-right: 6px;
  display: inline-block;
  filter: drop-shadow(0 0 2px #F0A202);
}
/* HEADER & NAV ---------------------------------------------------- */
header {
  background: #101C2A;
  box-shadow: 0 2px 14px 0 rgba(20,30,45,0.12);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 24px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 7px #F0A20233);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  color: #E6E6E6;
  font-size: 1.075rem;
  padding: 6px 8px;
  border-radius: 12px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F0A202;
  background: #152430;
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F0A202;
  margin-left: 18px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #FFEC8B;
  transform: scale(1.15);
}
/* MOBILE NAVIGATION ---------------------------------------------------- */
.mobile-menu {
  position: fixed;
  background: #101C2A;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.85,0,0.15,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 20px 24px 24px;
  width: 100vw;
  max-width: 100vw;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #F0A202;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  cursor: pointer;
  padding: 0 0 10px 0;
  margin-bottom: 16px;
  transition: color 0.18s, transform 0.18s;
  z-index: 1300;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFEC8B;
  transform: scale(1.15);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #F0A202;
  padding: 12px 8px;
  border-radius: 14px;
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  background: none;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 4px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #162B45;
  color: #fff;
}
/* Hide desktop menu on mobile, show mobile toggle */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}
/* FOOTER ---------------------------------------------------- */
footer {
  background: #163146;
  color: #E6E6E6;
  font-size: 1rem;
  padding-top: 32px;
  padding-bottom: 32px;
  box-shadow: 0 -2px 14px 0 rgba(30,40,55,0.13);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  font-size: 1.3rem;
  color: #F0A202;
  margin-bottom: 8px;
}
.footer-brand img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #E6E6E6;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: #F0A202;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #B6BAC0;
}
.footer-contact img {
  margin-right: 8px;
  width: 1em;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a {
  background: #172B41;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.17s, background 0.17s;
}
.footer-social a:hover, .footer-social a:focus {
  box-shadow: 0 0 12px 2px #F0A20244;
  background: #101C2A;
}
/* EXTRA UTILITIES ---------------------------------------------------- */
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-60 { margin-bottom: 60px; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-32 { gap: 32px; }
.rounded-10 { border-radius: 10px; }
.rounded-16 { border-radius: 16px; }
.shadow-xs { box-shadow: 0 1px 6px rgba(20, 30, 45, 0.13); }
.shadow-lg { box-shadow: 0 10px 38px 0 rgba(22,49,70,0.15); }
/* COOKIE CONSENT BANNER ---------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #233350;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 22px;
  z-index: 5000;
  box-shadow: 0 -6px 30px 0 rgba(20,30,45,0.19);
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.80,0,0.16,1), opacity 0.3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  border: none;
  background: #F0A202;
  color: #163146;
  font-family: 'Roboto Slab','Open Sans',Arial,sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 10px 26px;
  margin-left: 4px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  box-shadow: 0 2px 10px 0 rgba(240,162,2,0.14);
}
.cookie-btn.cookie-settings {
  background: #233350;
  color: #F0A202;
  border: 1px solid #F0A202;
  box-shadow: none;
}
.cookie-btn.cookie-settings:hover,
.cookie-btn.cookie-settings:focus {
  background: #101C2A;
  color: #FFEC8B;
  outline: none;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #FFB838;
  color: #101C2A;
  transform: translateY(-1px) scale(1.05);
  outline: none;
}
.cookie-btn.cookie-reject {
  background: #192B3B;
  color: #fff;
  border: 1px solid #F0A202;
}
.cookie-btn.cookie-reject:hover,
.cookie-btn.cookie-reject:focus {
  background: #233350;
  color: #F0A202;
}
/* COOKIE SETTINGS MODAL ---------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 5010;
  background: rgba(15,27,41,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #192B3B;
  color: #fff;
  border-radius: 24px;
  padding: 38px 32px 30px 32px;
  max-width: 360px;
  width: 90vw;
  box-shadow: 0 10px 44px 5px rgba(13,22,38,0.22);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal h2 {
  color: #F0A202;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  color: #F0A202;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.16s, transform 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #FFEC8B;
  outline: none;
  transform: scale(1.07);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #22344D;
  border-bottom: 1px solid #22344D;
}
.cookie-category .category-label {
  font-weight: 600;
  color: #F0A202;
}
.cookie-category .category-toggle {
  font-size: 1.3rem;
  accent-color: #F0A202;
}
.essential {
  color: #219150;
  font-weight: bold;
}
/* GENERAL FORMS ---------------------------------------------------- */
input, select, textarea, button {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
input[type="checkbox"], input[type="radio"] {
  accent-color: #F0A202;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::placeholder {
  color: #9FAAB7;
  opacity: 1;
  font-size: 1em;
}
/* NEON ACCENT SHADOWS FOR FUTURISTIC TECH FEEL ---------------------------------------------------- */
.btn-primary,
.cookie-btn,
.main-nav a:hover, .main-nav a:focus,
.mobile-menu-toggle,
.footer-social a:hover,
.footer-social a:focus {
  box-shadow:
    0 0 0 0 #F0A202,
    0 0 9px 0 #F0A20266;
}
.testimonial-card {
  box-shadow:
    0 2px 18px 0 rgba(80,120,167,0.10),
    0 0 0 2px #F0A20222;
}
.card, .section {
  box-shadow:
    0 4px 24px 0 rgba(18,40,58,0.10),
    0 0 20px 2px #F0A2020F;
}
/* HOVER/FOCUS MICRO-INTERACTIONS ---------------------------------------------------- */
.card:hover, .card:focus-within {
  box-shadow:
    0 8px 36px 0 rgba(36,80,122,0.18),
    0 0 32px 0 #F0A20233;
  transform: translateY(-3px) scale(1.01);
  border-color: #F0A20288;
  outline: none;
  z-index: 3;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 3px 28px 0 #FFEC8B44, 0 0 0 2px #F0A20233;
  outline: none;
  transform: scale(1.017);
}
/* MODERN SCROLLBAR ---------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #101C2A;
}
::-webkit-scrollbar-thumb {
  background: #20334C;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F0A202;
}
/* RESPONSIVE ---------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 992px) {
  .section {
    padding: 24px 8px;
  }
  .footer-brand {
    font-size: 1.1rem;
  }
  .footer-contact, .footer-nav {
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .hero .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    padding: 16px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 4px;
  }
  footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer-social {
    margin-top: 8px;
    gap: 7px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 9px;
    gap: 14px;
    font-size: 1rem;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: row;
    gap: 10px;
    margin-top: 7px;
  }
  .cookie-modal {
    padding: 18px 7vw 16px 7vw;
    min-width: 0;
    max-width: 97vw;
  }
}
@media (max-width: 480px) {
  h1 {font-size: 1.75rem;}
  h2 {font-size: 1.25rem;}
  h3, h4 {font-size: 1.05rem;}
  .cookie-modal {
    padding: 12px 1vw 10px 1vw;
    font-size: 0.99rem;
  }
  .btn-primary, .cookie-btn {
    min-width: 120px;
    padding: 10px 10px;
    font-size: 0.95rem;
  }
}
/* END OF CSS */
