/* === 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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #0F1B24; /* extra deep blue for tech/futuristic base */
  color: #E3E7EB;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%; display: block;
}
a {
  color: #5CF2FA;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

/* === BRAND FONTS === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size:1.1rem; }
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
  color: #5CF2FA;
  font-size: 1.3rem;
  border-left: 4px solid #5CF2FA;
  padding-left: 20px;
  margin: 0 0 24px 0;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
main > section, section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #172e45;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(92,242,250,0.08);
  padding: 32px 28px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid, .service-card-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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #E3E7EB;
  color: #16304B !important;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(38,145,194,0.10);
  border: none;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(92,242,250,0.20);
}
.testimonial-meta {
  font-size: 0.96em;
  color: #7E969C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  background: #1f3550;
  padding: 24px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(92,242,250,0.05);
  margin-bottom: 20px;
  border-left: 4px solid #5CF2FA;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-item:hover {
  box-shadow: 0 4px 22px 0 rgba(92,242,250,0.18);
  border-left: 4px solid #17ef94;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 32px 0;
}
.industry-tags span {
  background: #16304B;
  color: #5CF2FA;
  font-size: 0.92em;
  padding: 6px 18px;
  border-radius: 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Hero Section */
.hero {
  background: linear-gradient(110deg, #16304B 60%, #1A305B 80%, #33d9ff 140%);
  background-color: #16304B;
  padding: 64px 0 32px 0;
  border-bottom: 1px solid #223c57;
  position: relative;
}
.hero h1, .hero p, .hero .tagline {
  color: #fff;
}
.hero .tagline {
  margin-top: 14px;
  font-size: 1.15em;
  color: #5CF2FA;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(100deg, #16304B 65%, #17ef94 250%);
  background-color: #16304B;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 18px 55px 0 rgba(23,239,148,0.09);
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}
.cta-banner .btn-primary {
  margin-top: 16px;
}

/* Callout quotes */
.callout {
  background: #111e2e;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(92,242,250,0.10);
  margin-bottom: 40px;
  padding: 40px 0;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 14px;
}

/* Services & Job Entries */
.service-card-grid, .job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card, .job-entry, .project-entry {
  background: #172e45;
  border-radius: 14px;
  padding: 30px 22px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: 0 2px 12px 0 rgba(38,145,194,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.service-card:hover, .job-entry:hover {
  box-shadow: 0 8px 30px 0 rgba(23,239,148,0.15);
}

.project-list, .job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.project-entry {
  flex: 1 1 320px;
  border-left: 4px solid #5CF2FA;
  min-width: 220px;
  margin-bottom: 20px;
}

.map-placeholder {
  margin-top: 16px;
  background: #142436;
  border-radius: 10px;
  color: #5CF2FA;
  text-align: center;
  padding: 32px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1em;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px 0 rgba(92,242,250,0.04);
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #5CF2FA;
  background: #101e2c;
  border-radius: 10px;
  padding: 22px 18px;
  margin-bottom: 20px;
}
.contact-infos a {
  color: #33d9ff;
}

.work-culture {
  margin-top: 34px;
  border-left: 4px solid #33d9ff;
  padding-left: 16px;
  background: #172e45;
  border-radius: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #172e45;
  width: 100%;
  box-shadow: 0 2px 16px 0 rgba(38,145,194,0.04);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  height: 72px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 42px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 600;
  color: #E3E7EB;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #111e2e;
  color: #5CF2FA;
}

.btn-primary, .btn-secondary, .btn-link {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.04em;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.16s;
  margin-top: 14px;
  text-align: center;
  outline: none;
}
.btn-primary {
  background: linear-gradient(90deg, #33d9ff 60%, #17ef94 120%);
  color: #16304B;
  box-shadow: 0 2px 16px 0 rgba(92,242,250,0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #17ef94 70%, #33d9ff 130%);
  color: #05162c;
  box-shadow: 0 4px 26px 0 rgba(92,242,250,0.14);
}
.btn-secondary {
  background: #16304B;
  color: #5CF2FA;
  border: 1.5px solid #5CF2FA;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #5CF2FA;
  color: #16304B;
  border-color: #17ef94;
}
.btn-link {
  background: none;
  color: #5CF2FA;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-size: 1em;
}
.btn-link:hover, .btn-link:focus {
  color: #33d9ff;
  background: none;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #5CF2FA;
  font-size: 2.2rem;
  border: none;
  outline: none;
  padding: 6px 16px;
  margin-left: 14px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 160;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #17ef94;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,44,71,0.98);
  backdrop-filter: blur(2px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.77,0.2,0.05,1.0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #5CF2FA;
  font-size: 2.1rem;
  align-self: flex-end;
  border: none;
  padding: 20px 28px 10px 0;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 1011;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #17ef94;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 28px 0 32px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #5CF2FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16em;
  font-weight: 650;
  letter-spacing: 0.03em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(92,242,250,0.10);
  transition: color 0.17s, background 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #17ef94;
  background: rgba(23,239,148,0.06);
}

/* === FOOTER === */
footer {
  background: #111e2e;
  color: #7E969C;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 2px solid #223c57;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1f3550;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #5CF2FA;
  margin-bottom: 3px;
  font-size: 0.97em;
  transition: color 0.18s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover {
  color: #17ef94;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.97em;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 8px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
.footer-social a {
  filter: brightness(1.4);
  transition: filter 0.18s, transform 0.19s;
}
.footer-social a:hover {
  filter: brightness(1.8);
  transform: scale(1.18);
}
.footer-legal {
  color: #55B6BE;
  font-size: 0.93em;
  margin-top: 16px;
  text-align: center;
}

/* == Cookie Consent Banner & Modal == */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #111e2e;
  color: #E3E7EB;
  z-index: 1600;
  padding: 22px 14px 22px 18px;
  box-shadow: 0 -2px 22px 0 rgba(23,239,148,0.09), 0 1px 0 #17ef94;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  transition: transform 0.50s cubic-bezier(0.65,0.11,0.56,0.9);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-text {
  font-size: 1.05em;
  max-width: 470px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-left: auto;
}
.cookie-banner .cookie-btn {
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 11px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  margin-left: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #33d9ff 50%, #17ef94 130%);
  color: #16304B;
  margin-right: 6px;
}
.cookie-btn.accept:hover {
  background: linear-gradient(90deg, #17ef94 70%, #33d9ff 130%);
  color: #05162c;
}
.cookie-btn.reject {
  background: #172e45;
  color: #E3E7EB;
  border: 1.3px solid #5CF2FA;
}
.cookie-btn.reject:hover {
  background: #1a305b;
  color: #33d9ff;
  border-color: #17ef94;
}
.cookie-btn.settings {
  background: none;
  color: #5CF2FA;
  border: none;
  text-decoration: underline;
  padding: 0 6px;
  margin-left: 10px;
}
.cookie-btn.settings:hover {
  color: #17ef94;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,44,71,0.97);
  z-index: 1700;
  justify-content: center;
  align-items: center;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #16304B;
  border-radius: 18px;
  padding: 36px 30px 30px 30px;
  max-width: 94vw;
  min-width: 300px;
  box-shadow: 0 18px 48px 0 rgba(23,239,148,0.14);
  color: #E3E7EB;
  position: relative;
  border: 1.5px solid #5CF2FA;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .modal-title {
  font-size: 1.3em;
  color: #5CF2FA;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #111e2e;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
}
.cookie-category .category-label {
  flex: 1;
}
.cookie-category .category-toggle {
  accent-color: #33d9ff;
  width: 22px; height: 22px;
}
.cookie-category .category-fixed {
  color: #17ef94;
  font-size: 0.98em;
  margin-left: 10px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .btn {
  padding: 10px 25px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: #33d9ff;
  color: #16304B;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-modal .btn:hover {
  background: #17ef94;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #5CF2FA;
  font-size: 1.7em;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .modal-close:hover {
  color: #17ef94;
}

/* === UTILITIES & MICROINTERACTIONS === */
::-webkit-scrollbar {
  width: 10px;
  background: #111e2e;
}
::-webkit-scrollbar-thumb {
  background: #16304B;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #33d9ff;
}

/* --- Animations --- */
.btn-primary, .btn-secondary, .btn-link, .main-nav a, .service-card, .feature-item {
  transition: box-shadow 0.16s, background 0.13s, border-color 0.15s, color 0.13s, transform 0.11s;
}
.service-card:hover, .feature-item:hover {
  transform: translateY(-7px) scale(1.024);
  box-shadow: 0 8px 30px 0 rgba(23,239,148,0.16);
}
.job-entry:hover {
  transform: translateY(-6px) scale(1.018);
  box-shadow: 0 12px 32px 0 rgba(92,242,250,0.10);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(92,242,250,0.12);
  transform: translateY(-6px) scale(1.012);
}

/* --- Responsive Design --- */
@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
    margin-left: 16px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-card-grid, .job-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  .container { padding: 0 10px; }
  .hero {
    padding: 38px 0 24px 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .footer-logo img {
    margin-bottom: 2px;
  }
  main > section, section.section {
    padding: 30px 0 0 0;
    margin-bottom: 36px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .cta-banner, .callout {
    padding: 28px 0;
    margin-bottom: 28px;
  }
  .service-card, .feature-item, .project-entry, .job-entry, .testimonial-card {
    min-width: unset;
    padding: 22px 12px;
  }
  .service-card-grid, .job-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .industry-tags {
    gap: 8px;
    margin-bottom: 20px;
  }
  .industry-tags span {
    font-size: 0.95em;
    padding: 5px 13px;
  }
  .partner-logos {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 22px 6px;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .footer-logo img {
    height: 36px;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 16px;
    font-size: 0.98em;
  }
}

/* == Accessibility & Utility == */
:focus-visible {
  outline: 2px solid #5CF2FA;
  outline-offset: 3px;
}

/* === END === */
