/* RESET & NORMALIZATION */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #101725;
  color: #f5f5f5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #FFA824;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover,
a:focus {
  color: #fff;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* BRAND COLORS & NEON ACCENTS */
:root {
  --color-primary: #163956;
  --color-secondary: #FFA824;
  --color-accent: #F5F5F5;
  --color-bg: #101725;
  --color-bg-alt: #16223b;
  --color-text: #f5f5f5;
  --color-grey: #1f2940;
  --color-shadow: rgba(22, 57, 86, 0.2);
  --color-neon-blue: #18D1FF;
  --color-neon-purple: #8942FF;
  --color-neon-green: #09FFA7;
}

/* TYPOGRAPHY */
body {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 4px 24px var(--color-neon-blue);
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.17;
  text-shadow: 0 2px 10px var(--color-neon-purple);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px var(--color-neon-green);
}
.subheadline {
  color: var(--color-neon-blue);
  font-size: 1.125rem;
  margin-bottom: 24px;
}
p {
  margin-bottom: 20px;
  color: #f5f5f5;
  line-height: 1.7;
  font-size: 1rem;
}
strong, b {
  color: var(--color-secondary);
  font-weight: 700;
}

/* CONTAINER / SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-alt);
  border-radius: 18px;
  box-shadow: 0 6px 48px var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-grey);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(24,209,255,0.08);
  padding: 28px 22px;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 100%;
}
.card:hover {
  box-shadow: 0 0 16px 2px var(--color-neon-blue), 0 2px 24px 0 var(--color-neon-green);
  transform: translateY(-3px) 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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE & SERVICE LISTS */
.features-list,
.values-list,
.benefits-list,
.service-list,
.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.features-list li,
.values-list li,
.benefits-list li,
.service-list li,
.news-list li {
  background: var(--color-grey);
  border-radius: 14px;
  min-width: 220px;
  flex: 1 1 220px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  box-shadow: 0 2px 20px -6px var(--color-neon-blue);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features-list li:hover,
.values-list li:hover,
.benefits-list li:hover,
.service-list li:hover,
.news-list li:hover {
  box-shadow: 0 0 0 2px var(--color-neon-purple), 0 3px 24px -7px var(--color-neon-blue);
  transform: translateY(-2px) scale(1.01);
}
.features-list img,
.values-list img,
.benefits-list img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 3px var(--color-neon-blue));
  margin-bottom: 6px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 18px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: #163956;
  box-shadow: 0 1px 10px 0 rgba(22, 57, 86, 0.11);
  border: 2px solid #18D1FF44;
}
.testimonial-card p {
  color: #163956;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-size: 1.13rem;
  text-align: center;
}
.testimonial-author {
  color: var(--color-secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* BUTTONS */
.cta-button {
  background: linear-gradient(90deg, var(--color-secondary) 60%, var(--color-neon-blue) 120%);
  color: #101725;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 38px;
  font-size: 1.09rem;
  margin-top: 16px;
  border: none;
  box-shadow: 0 0 12px 0 #FFA82466;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.21s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  outline: none;
}
.cta-button:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(24, 209, 255, 0.20);
  transition: width .6s cubic-bezier(.29,.46,.38,1.31), height .6s cubic-bezier(.29,.46,.38,1.31), left .4s, top .4s;
  z-index: 0;
}
.cta-button:hover:before,
.cta-button:focus:before {
  width: 300%;
  height: 200%;
  left: -100%;
  top: -80%;
}
.cta-button:hover,
.cta-button:focus {
  color: #fff;
  background: linear-gradient(92deg, var(--color-neon-blue) 60%, var(--color-secondary) 90%);
  transform: scale(1.04);
  box-shadow: 0 4px 32px 0 var(--color-neon-blue);
}

/* HEADER & NAVIGATION */
header {
  background: #13223c;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 0;
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 72px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 1.01rem;
  padding: 11px 9px;
  border-radius: 32px;
  position: relative;
  transition: background 0.2s, color .2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-neon-blue);
  color: #101725;
  z-index: 1;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
header .cta-button {
  margin-top: 0;
  margin-left: 28px;
  box-shadow: 0 0 12px 0 var(--color-neon-green);
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-secondary);
  border: none;
  font-size: 2.2rem;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 70;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--color-neon-blue);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,23,37,0.96);
  box-shadow: 0 6px 32px 6px var(--color-neon-blue);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.87,-.41,.19,1.37);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  z-index: 200;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 18px;
  padding: 6px;
  cursor: pointer;
  z-index: 201;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-neon-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 14px 0 11px 6px;
  border-radius: 22px;
  transition: background 0.21s, color .21s;
  display: block;
  min-width: 180px;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-neon-purple);
  color: #FFF;
}
@media (max-width: 1024px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #16223b;
  padding: 38px 0 24px 0;
  color: #fff;
  border-top: 4px solid var(--color-secondary);
  margin-top: 80px;
}
footer .container {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex: 1 1 180px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 2px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 2 1 300px;
  color: #eaecf0;
  font-size: 0.97rem;
}
.footer-info img {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 120px;
}
.footer-menu a {
  color: #FFA824;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color 0.2s;
}
.footer-menu a:hover {
  color: #18D1FF;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  background: var(--color-neon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 1px 6px 0 #8942FF55;
  transition: background 0.2s;
}
.footer-social a:hover {
  background: var(--color-neon-green);
}
.footer-social img {
  width: 21px;
  height: 21px;
}

/* ACCORDION/FAQ */
dl dt {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 15px;
  font-weight: bold;
  color: var(--color-secondary);
}
dl dd {
  margin-left: 0;
  margin-top: 4px;
  margin-bottom: 12px;
  color: #f5f5f5;
}

/* GENERAL ELEMENT SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: var(--color-bg-alt);
  box-shadow: 0 3px 32px 0 var(--color-shadow);
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #16223b;
  color: #f5f5f5;
  font-size: 1rem;
  box-shadow: 0 -2px 16px var(--color-shadow);
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 10px 26px 10px;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s cubic-bezier(.07,.56,.37,1.37), visibility 0s linear .3s;
}
.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .32s, visibility 0s;
}
.cookie-banner .cookie-text {
  max-width: 500px;
  margin-right: 30px;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 40px;
  padding: 10px 28px;
  border: none;
  font-size: 1.01rem;
  margin-right: 3px;
  outline: none;
  transition: background .19s, color .19s;
}
.cookie-banner .accept-btn {
  background: var(--color-neon-green);
  color: #101725;
  box-shadow: 0 1px 12px 0 #09FFA777;
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: #fff;
  color: #09FFA7;
}
.cookie-banner .reject-btn {
  background: none;
  border: 2px solid var(--color-neon-blue);
  color: var(--color-neon-blue);
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: var(--color-neon-blue);
  color: #101725;
}
.cookie-banner .settings-btn {
  background: var(--color-secondary);
  color: #101725;
  margin-left: 3px;
  margin-right: 0;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #fff;
  color: #FFA824;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translate(-50%,120%);
  width: 96vw;
  max-width: 480px;
  background: #121b2a;
  color: #fff;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 -3px 40px 0 var(--color-neon-blue);
  z-index: 6000;
  padding: 38px 25px 21px 25px;
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.37,1.13,.7,.94), opacity .2s;
}
.cookie-modal.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h2 {
  color: var(--color-neon-blue);
  margin-bottom: 18px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-modal .category label {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal .category input[type='checkbox'] {
  appearance: none;
  width: 26px;
  height: 26px;
  border: 2px solid var(--color-neon-blue);
  border-radius: 8px;
  background: #1e2943;
  position: relative;
  outline: none;
  transition: border-color .1s, background .1s;
  margin-right: 4px;
}
.cookie-modal .category input[type='checkbox']:checked {
  background: var(--color-neon-blue);
  border-color: var(--color-neon-blue);
}
.cookie-modal .category input[type='checkbox']:checked:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 10px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}
.cookie-modal .category input[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 32px;
  padding: 8px 20px;
  border: none;
  font-size: 1rem;
  transition: background .16s, color .16s;
}
.cookie-modal .save-btn {
  color: #101725;
  background: var(--color-neon-green);
}
.cookie-modal .save-btn:hover {
  background: #fff;
  color: var(--color-neon-green);
}
.cookie-modal .close-btn {
  color: var(--color-neon-blue);
  background: none;
  border: 2px solid var(--color-neon-blue);
}
.cookie-modal .close-btn:hover {
  background: var(--color-neon-blue);
  color: #101725;
}

/* SCROLLBAR CUSTOMIZATION */
::-webkit-scrollbar {
  width: 9px;
  background: #16223b;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, var(--color-neon-blue) 30%, var(--color-secondary));
  border-radius: 6px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 11px;
  }
  .footer-menu, .footer-info {
    flex: 1 1 100%;
  }
}
@media (max-width: 899px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .section, section {
    padding: 32px 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .card-container,
  .content-grid,
  .features-list,
  .values-list,
  .benefits-list,
  .service-list,
  .news-list {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  .footer-brand, .footer-info, .footer-menu, .footer-social {
    align-items: flex-start !important;
    flex: 1 1 100%;
  }
  .section, section {
    margin-bottom: 28px;
    padding: 18px 5px;
    border-radius: 14px;
  }
}
@media (max-width: 512px) {
  .card, .features-list li, .values-list li, .benefits-list li, .service-list li, .news-list li {
    min-width: 0;
    padding: 14px 7px 11px 7px;
  }
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.08rem; }
}

/* ANIMATIONS & MICROINTERACTIONS */
.cta-button, .cookie-banner button, .cookie-modal button {
  transition: background .22s, color .22s, box-shadow 0.21s, transform 0.19s;
}
.card, .features-list li, .values-list li, .benefits-list li, .service-list li, .news-list li, .testimonial-card {
  transition: box-shadow .22s, transform .18s;
}

/* Z-INDEX LAYERING */
header { z-index: 200; }
.mobile-menu { z-index: 900; }
.cookie-banner { z-index: 5000; }
.cookie-modal { z-index: 6000; }

/* ENSURE NON-OVERLAPPING BY SPACING */
.card, .testimonial-card, .features-list li, .values-list li, .benefits-list li, .service-list li, .news-list li {
  margin-bottom: 20px;
}

/* HIDE FOCUS OUTLINES, SHOW ON KEY FOCUS */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--color-neon-blue);
  outline-offset: 2px;
}

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

/* MISC */
hr {
  border: none;
  border-top: 2px solid var(--color-neon-blue);
  margin: 40px 0;
}

/* END OF CSS */
