/* --- CSS RESET & BASELINE --- */
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, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #101726;
  color: #FAFAFA;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
}

/* --- BRAND COLOR VARS --- */
:root {
  --color-primary: #103E68;
  --color-secondary: #F9B233;
  --color-accent: #FAFAFA;
  --color-bg: #101726;
  --color-surface: #16243a;
  --color-card: #151f2a;
  --color-shadow: rgba(16, 62, 104, 0.14);
  --color-neon-blue: #18A4FA;
  --color-neon-yellow: #F9B233;
  --color-danger: #d43a34;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-neon-blue);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-accent);
}
p, ul, li, a, label, input, button, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
  color: var(--color-neon-yellow);
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  background: var(--color-surface);
  border-left: 4px solid var(--color-neon-blue);
  padding: 16px;
  margin: 0 0 12px 0;
  color: #2dfdfe;
  border-radius: 0 8px 8px 0;
}

/* --- CONTAINER, SPACING, & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.card-container, .feature-grid, .testimonial-slider, .testimonial-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card, .testimonial-card, .team-member, .service-list > li {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .testimonial-card:hover, .service-list > li:hover {
  box-shadow: 0 4px 24px 0 #24ffe4b0, 0 2px 16px 0 var(--color-shadow);
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}
.card-content, .team-member, .service-list > li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

.feature-grid > div {
  background: var(--color-surface);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 24px 18px 18px 18px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 2px 18px 0 #29b6f6ad;
  transform: translateY(-2px) scale(1.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  background: #fff;
  color: #181b2b;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 20px 22px;
  min-width: 270px;
  max-width: 470px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.testimonial-card blockquote {
  border-left: 4px solid var(--color-neon-blue);
  background: #eaeef4;
  color: #103e68;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}
.testimonial-card strong {
  color: var(--color-primary);
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.testimonial-list .testimonial-card {
  background: #fff;
  color: #181b2b;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 20px 22px;
  min-width: 270px;
  max-width: 420px;
  flex: 1 1 270px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.success-metrics {
  background: var(--color-surface);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 22px 24px;
  margin-top: 18px;
}

.card {
  min-width: 240px;
  max-width: 380px;
}
.card img {
  border-radius: 10px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-list > li {
  background: var(--color-card);
  flex: 1 1 320px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  margin-bottom: 20px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.13s, transform 0.13s;
}
.service-list > li h2, .service-list > li h3 {
  color: var(--color-neon-yellow);
  margin-bottom: 6px;
}
.service-list > li span,
.service-list > li div strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* --- NAVIGATION BAR --- */
header {
  background: #121C2D;
  box-shadow: 0 1px 14px 0 var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 120;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
}
.main-nav > a {
  color: var(--color-accent);
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  padding: 7px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav > a:not(.cta):hover,
.main-nav > a[aria-current='page'] {
  color: var(--color-neon-blue);
}
.main-nav > .cta {
  background: var(--color-neon-yellow);
  color: #212639;
  font-weight: 700;
  border-radius: 22px;
  padding: 7px 24px;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: box-shadow 0.15s, background 0.22s, color 0.17s;
  margin-left: 8px;
}
.main-nav > .cta:hover {
  background: #ffc04d;
  color: #101726;
  box-shadow: 0 4px 18px #29b6f6b0;
}

/* Hide nav on mobile - managed by JS */
.mobile-menu-toggle {
  display: none;
  background: var(--color-neon-yellow);
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 2px 16px #32394c18;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 250;
  position: relative;
  transition: background 0.22s, color 0.19s;
}
.mobile-menu-toggle:hover {
  background: var(--color-neon-blue);
  color: #fff;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 9px;
  }
  .main-nav > a {
    font-size: 1rem;
    padding: 6px 0;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,28,56,0.97);
  z-index: 350;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.7,0,.33,1), opacity 0.2s;
  opacity: 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: var(--color-neon-blue);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  box-shadow: 0 2px 11px #18A4FA33;
  margin: 20px 14px 0 0;
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: var(--color-neon-yellow);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 34px 10px 34px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  background: transparent;
  transition: background 0.16s, color 0.16s;
  min-width: 140px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-neon-blue);
  color: var(--color-neon-yellow);
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 22px 8px 10px 16px;
    gap: 13px;
  }
}

/* --- BUTTONS & CTAs --- */
.cta,
button.cta, a.cta {
  background: var(--color-neon-yellow);
  color: #101726;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 22px;
  padding: 12px 34px;
  border: none;
  box-shadow: 0 2px 14px 0 #F9B23333;
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.19s, transform 0.16s;
  letter-spacing: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
.cta:hover, button.cta:hover, a.cta:hover {
  background: var(--color-neon-blue);
  color: #fff;
  box-shadow: 0 3px 22px #18A4FA4a;
  transform: translateY(-2px) scale(1.025);
}

/* --- LINKS --- */
a {
  color: var(--color-neon-blue);
  transition: color 0.14s;
}
a:hover {
  color: var(--color-neon-yellow);
}

/* --- FOOTER --- */
footer {
  background: #0B1524;
  color: #FAFAFA;
  margin-top: 60px;
  padding: 28px 0 18px 0;
  border-top: 4px solid var(--color-neon-yellow);
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 5px;
  transition: background 0.15s, color 0.12s;
}
.footer-nav a:hover {
  background: var(--color-neon-blue);
  color: var(--color-neon-yellow);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #bae0fa;
  font-size: 1rem;
}
.contact-info img {
  vertical-align: middle;
  width: 1.2em;
  margin-right: 7px;
}
.footer-note {
  color: #9cc3e7;
  font-size: 0.95rem;
  margin-top: 10px;
}
@media (max-width: 700px) {
  footer .content-wrapper {
    gap: 13px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
}

/* --- CARD DECORATIVE LINES (Neon) --- */
.card:before, .testimonial-card:before, .feature-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to bottom, #18A4FA 30%, #F9B233 100%);
  z-index: 1;
  opacity: 0.8;
}
.feature-grid > div:before {
  width: 80%;
  height: 4px;
  left: 10%;
  top: 0;
  background: linear-gradient(to right, #103E68 15%, #18A4FA 55%, #F9B233 100%);
  border-radius: 8px;
}
.card:before, .testimonial-card:before {
  top: 0; left: 0;
  width: 4px; height: 100%;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  0% {opacity:0; transform:translateY(30px);}
  100% {opacity:1; transform:translateY(0);}
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.section, .cta, .feature-grid > div, .testimonial-card, .service-list > li {
  animation: fadeInUp 0.8s cubic-bezier(.65,0,.41,1) both;
}
.card, .testimonial-list .testimonial-card {
  animation: fadeIn 0.8s cubic-bezier(.73,0,.27,1) both;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
  }
  .feature-grid, .testimonial-slider, .service-list, .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 90vw;
  }
  .feature-grid, .testimonial-slider, .service-list, .testimonial-list {
    flex-direction: column;
    gap: 13px;
  }
  .feature-grid > div, .service-list > li, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.22rem; }
  h3, .h3 { font-size: 1.03rem; }
  .section {padding: 18px 4px; margin-bottom: 24px;}
  .cta, button.cta, a.cta { font-size: 0.98rem; padding: 8px 18px; }
}

/* --- TABLES (for legal) --- */
table {
  border-collapse: collapse;
  width: 100%;
}
td, th {
  padding: 10px 8px;
  border-radius: 7px;
  border: 1px solid #22405d;
}

/* --- TAGLINE SPECIAL --- */
.tagline {
  color: var(--color-neon-yellow);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.12rem;
}

/* --- CERTIFICATIONS --- */
.certifications {
  margin: 14px 0 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffe249;
  font-size: 1.05rem;
}
.certifications img {
  width: 1.1em;
  margin-right: 7px;
  vertical-align: middle;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #16243aee;
  color: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  box-shadow: 0 -2px 20px #103E6846;
  z-index: 500;
  animation: fadeInUp 0.9s cubic-bezier(.65,0,.41,1) both;
}
.cookie-banner__message {
  flex: 1 1 auto;
  font-size: 1.08rem;
  line-height: 1.6;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner__btn, .cookie-banner__btn--secondary {
  font-family: 'Montserrat', Arial;
  padding: 9px 22px;
  border-radius: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, box-shadow 0.14s;
}
.cookie-banner__btn {
  background: var(--color-neon-yellow);
  color: var(--color-primary);
  box-shadow: 0 1px 8px #F9B23344;
}
.cookie-banner__btn:hover {
  background: var(--color-neon-blue);
  color: #fff;
}
.cookie-banner__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--color-neon-yellow);
}
.cookie-banner__btn--secondary:hover {
  background: var(--color-neon-yellow);
  color: var(--color-primary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 10px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(16, 62, 104, 0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  animation: fadeIn 0.28s cubic-bezier(.55,0,.45,1) both;
}
.cookie-modal {
  background: #fff;
  color: #16243a;
  border-radius: 22px;
  max-width: 96vw;
  width: 410px;
  box-shadow: 0 2px 24px #103E687c;
  padding: 38px 36px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal__title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cookie-modal__desc {
  color: #333d57;
  font-size: 1.03rem;
  margin-bottom: 10px;
}
.cookie-modal__category {
  margin-bottom: 14px;
}
.cookie-modal__category input[type="checkbox"] {
  accent-color: var(--color-neon-blue);
  margin-right: 6px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal__btn {
  padding: 8px 18px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial;
  font-weight: 700;
  font-size: 1.01rem;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal__btn--accept {
  background: var(--color-neon-yellow);
  color: var(--color-primary);
}
.cookie-modal__btn--accept:hover {
  background: var(--color-neon-blue);
  color: #fff;
}
.cookie-modal__btn--reject {
  background: #e84746;
  color: #fff;
  margin-left: 2px;
}
.cookie-modal__btn--reject:hover {
  background: #c92423;
}
.cookie-modal__btn--close {
  background: transparent;
  color: #232d42;
  border: 1px solid #ccc;
}
.cookie-modal__btn--close:hover {
  color: var(--color-neon-blue);
  border-color: var(--color-neon-blue);
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 16px 6vw 18px 6vw;
    width: 98vw;
    max-width: 99vw;
  }
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px solid var(--color-neon-blue);
  outline-offset: 1px;
}
button:focus, a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  z-index: 3;
}

/* --- EXTRAS & UTILITIES --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.gap-20 { gap: 20px; }
.visible-mobile { display: none; }
@media (max-width: 768px) { .visible-mobile { display: block; } }

/* --- END OF COMPREHENSIVE TECH FUTURISTIC STYLE --- */