/* ==== 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,
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;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  line-height: 1.5;
  font-family: "Open Sans", Arial, sans-serif;
  background: #131c31;
  color: #f6f4ee;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #54e6ff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23bfff;
  text-decoration: underline;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 8px;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  color: #f6f4ee;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.15rem; margin-bottom: 10px; }

p, li, ul, a, .button-primary, button {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  color: #e5e8f2;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: #54e6ff;
}

/* ==== CONTAINER SYSTEM ==== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==== HEADER ==== */
header {
  background: #08203e;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  box-shadow: 0 2px 48px 0 rgba(84,230,255, 0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.logo img { height: 40px; }
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  color: #e5e8f2;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.1em;
}
nav a:hover, nav a:focus {
  color: #131c31;
  background: #54e6ff;
}
nav .button-primary {
  margin-left: 16px;
}

/* ==== BUTTONS ==== */
.button-primary, button.button-primary, .content-wrapper > a.button-primary {
  background: linear-gradient(90deg, #23bfff 0%, #54e6ff 100%);
  color: #08203e;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 0 #54e6ff44;
  outline: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.22s, color 0.18s, box-shadow 0.23s, transform 0.19s;
  text-align: center;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, #54e6ff 0%, #23bfff 100%);
  color: #08203e;
  box-shadow: 0 0 18px 4px #54e6ff44;
  transform: translateY(-2px) scale(1.04);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.14s, background 0.14s;
}


/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #54e6ff;
  font-size: 2rem;
  padding: 12px;
  margin-left: 24px;
  z-index: 100;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #08203e99;
  color: #23bfff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #111927ef;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.9,0,.13,1.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #f6f4ee;
  align-self: flex-end;
  margin: 30px 24px 18px auto;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #1f375d99;
  color: #54e6ff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-weight: 500;
  color: #e5e8f2;
  padding: 14px 0 14px 8px;
  border-radius: 8px;
  min-width: 220px;
  margin-left: 0;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #54e6ff33;
  color: #54e6ff;
}

@media (max-width: 995px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 996px) {
  .mobile-menu { display: none !important; }
}


/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(120deg, #08203e 60%, #303b6d 100%);
  padding: 78px 0 54px 0;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0 6px 40px 0 #23bfff13;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  color: #54e6ff;
  background: -webkit-linear-gradient(80deg, #54e6ff 10%, #f6f4ee 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 9px #23bfff44;
  margin-bottom: 12px;
}
.hero p {
  max-width: 620px;
  color: #e5e8f2;
  font-size: 1.18rem;
  margin-bottom: 18px;
}
.hero .button-primary {
  margin-top: 10px;
}

/* ==== FEATURES & CARD-LIKE GRIDS ==== */
.features {
  background: #101a2b;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features h2 {
  color: #54e6ff;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #192443;
  border-radius: 16px;
  box-shadow: 0 2px 16px -4px #54e6ff22;
  padding: 26px 24px 20px 24px;
  width: 244px;
  transition: box-shadow 0.21s, transform 0.19s;
  min-height: 260px;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 32px 2px #54e6ff44;
  transform: translateY(-5px) scale(1.025);
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: #f6f4ee;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.feature-item p a {
  color: #54e6ff;
  font-weight: 600;
  text-decoration: underline;
}
.feature-item p a:hover {
  text-decoration: none;
  color: #23bfff;
}

@media (max-width: 650px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .feature-item {
    width: 100%;
    min-width: unset;
    align-items: flex-start;
  }
}

/* ==== SECTIONS Spacing ===== */
section {
  margin-bottom: 60px;
  padding: 40px 0px 0px 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== CARDS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #182443;
  border-radius: 14px;
  box-shadow: 0 2px 16px -4px #23bfff26;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 #54e6ff3d;
  transform: translateY(-4px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ==== TEXT-IMAGE SECTIONS ==== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.text-section {
  background: #161e33;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 #08203e22;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section h1, .text-section h2, .text-section h3 {
  color: #54e6ff;
}
.text-section ul {
  margin: 20px 0 20px 8px;
  padding-left: 22px;
}
.text-section li {
  position: relative;
  margin-bottom: 14px;
  color: #e5e8f2;
}
.text-section li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #54e6ff;
  border-radius: 50%;
  margin-right: 9px;
  margin-top: -2px;
}
.highlight-section {
  background: #22305d;
  border-left: 4px solid #54e6ff;
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 24px;
  margin-bottom: 28px;
  box-shadow: 0 1px 6px 0 #54e6ff13;
}
.team-section {
  background: #17223e;
  border-radius: 10px;
  padding: 18px 18px;
  margin-top: 15px;
  box-shadow: 0 1px 4px 0 #23bfff19;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section, .text-section {
    padding: 28px 8px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #f6f4ee;
  color: #08203e;
  padding: 46px 0 38px 0;
  margin-bottom: 60px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 4px 40px 0 #23bfff0d;
}
.testimonials h2 {
  color: #08203e;
}
.testimonials .content-wrapper {
  flex-direction: row;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #ffffffee;
  border-radius: 14px;
  padding: 20px 30px 18px 30px;
  box-shadow: 0 4px 30px 0 #23bfff21;
  min-width: 270px;
  max-width: 360px;
  margin-bottom: 20px;
  border: 1px solid #e4e8f1;
}
.testimonial-card p {
  color: #08203e;
  font-size: 1.08rem;
}
.testimonial-meta {
  color: #111927;
  font-weight: 600;
  font-size: 0.97rem;
  margin-top: 8px;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

/* ==== CTA Section ==== */
.cta-section {
  background: linear-gradient(85deg, #08203e 70%, #147ba8 130%);
  margin-bottom: 60px;
  padding: 40px 0px;
  border-radius: 18px;
  box-shadow: 0 2px 28px 0 #54e6ff1b;
}
.cta-section h2 {
  color: #54e6ff;
}
.cta-section p {
  color: #e5e8f2;
}
.cta-section .button-primary {
  margin-top: 12px;
}

/* ==== MAP / CONTACT ============ */
.map-embed {
  margin-top: 24px;
  background: #22305d;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-embed img {
  margin-bottom: 12px;
  height: 80px;
  width: 80px;
}
.map-embed p {
  margin: 0;
  color: #54e6ff;
  font-size: 1rem;
  font-weight: bold;
}

/* ==== FOOTER ==== */
footer {
  background: #101a2b;
  color: #e5e8f2;
  padding: 38px 0 24px 0;
  width: 100%;
  box-shadow: 0 -3px 40px 0 #23bfff12;
  margin-top: 60px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
footer nav a {
  color: #e5e8f2;
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.16s;
}
footer nav a:hover,
footer nav a:focus {
  color: #54e6ff;
  text-decoration: underline;
}
.footer-contact {
  color: #f6f4ee;
  font-size: 0.98rem;
  opacity: 0.92;
  line-height: 1.42;
}
footer img {
  height: 38px;
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #171e37cc;
  color: #fafbfc;
  z-index: 200;
  box-shadow: 0 -2px 24px #08203e41;
  padding: 26px 18px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  animation: cookiebanner-in 0.5s cubic-bezier(.5,2.6,.52,1.01);
}
@keyframes cookiebanner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  flex: 1 1 220px;
  color: #f3f4f9;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .button-primary {
  font-size: 1rem;
  border-radius: 30px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
}
.cookie-banner .cookie-accept {
  background: linear-gradient(90deg, #54e6ff 20%, #23bfff 100%);
  color: #08203e;
  font-weight: 700;
}
.cookie-banner .cookie-accept:hover {
  background: linear-gradient(90deg, #23bfff 20%, #54e6ff 100%);
  color: #08203e;
}
.cookie-banner .cookie-reject {
  background: #303b6d;
  color: #f3f4f9;
  font-weight: 700;
  border: 1px solid #54e6ffbb;
}
.cookie-banner .cookie-reject:hover {
  background: #23bfff44;
  color: #08203e;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #54e6ff;
  border: 1px solid #54e6ffdd;
  font-weight: 600;
}
.cookie-banner .cookie-settings:hover {
  background: #54e6ff22;
}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal {
  position: fixed;
  z-index: 210;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #10172cd1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #171f34;
  color: #e5e8f2;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 40px 30px 30px 30px;
  box-shadow: 0 4px 32px 2px #54e6ff22;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookiepopup-in 0.4s cubic-bezier(.5,2.6,.52,1.01);
}
@keyframes cookiepopup-in {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #54e6ff;
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.16s;
}
.cookie-modal__close:hover {
  color: #23bfff;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #22305d;
  border-radius: 8px;
  padding: 14px 20px;
  box-shadow: 0 0 8px 0 #54e6ff19;
}
.cookie-modal__category input[type='checkbox'],
.cookie-modal__category input[type='radio'] {
  width: 20px;
  height: 20px;
  accent-color: #54e6ff;
  margin: 0;
}
.cookie-modal__category strong {
  color: #54e6ff;
}
.cookie-modal__btns {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal__save {
  background: linear-gradient(90deg, #54e6ff 20%, #23bfff 100%);
  color: #08203e;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
}
.cookie-modal__save:hover {
  background: linear-gradient(90deg, #23bfff 20%, #54e6ff 100%);
  color: #08203e;
}

@media (max-width: 520px) {
  .cookie-modal__content {
    padding: 18px 6vw 22px 6vw;
  }
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 996px) {
  .header .container {
    flex-direction: row;
  }
}
@media (max-width: 650px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.28rem; }
  .hero { padding: 38px 0 24px 0; }
  .cta-section, .features, .testimonials, .text-section {
    margin-bottom: 34px;
    padding-top: 18px !important;
    padding-bottom: 12px !important;
  }
  .footer-contact, footer nav {
    font-size: 0.95rem;
  }
}

/* === Utility classes === */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.text-center { text-align: center !important; }
.w-100 { width: 100%!important; }

/* ==== SCROLLBAR STYLING for tech feel ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #101628;
}
::-webkit-scrollbar-thumb {
  background: #23bfff66;
  border-radius: 6px;
}

/* === Neon & Futuristic Animation Effects === */
.button-primary, .cookie-modal__save, .cookie-banner .cookie-accept {
  box-shadow: 0 0 0 0 #54e6ff33;
  transition: box-shadow 0.19s, filter 0.22s;
}
.button-primary:hover, .cookie-modal__save:hover, .cookie-banner .cookie-accept:hover {
  box-shadow: 0 0 24px 3px #54e6ff77;
  filter: brightness(1.07) drop-shadow(0 0 10px #23bfff);
}

.feature-item, .card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item:focus-within, .card:focus-within, .testimonial-card:focus-within {
  outline: 2px solid #54e6ff;
  outline-offset: 2px;
}

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