/* ============ CSS RESET & NORMALIZE ============ */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #171F32;
  color: #F5F7FA;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #4FAF77;
  text-decoration: none;
  transition: color 0.25s;
  outline: none;
}
a:hover, a:focus {
  color: #44DEFD;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ============ BRAND FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700,900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, .cta, .cta.primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }
p, ul, ol, dl, li, blockquote {
  font-size: 1rem;
}
strong { font-weight: 700; }

/* ============ UTILITY CLASSES ============ */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0; /* reset default gap for containers */
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
}

/* ============ HEADER AND NAVIGATION ============ */
header {
  width: 100%;
  background: #21283f;
  border-bottom: 2px solid #4FAF77;
  box-shadow: 0 4px 24px 0 rgba(35,56,106,0.08);
  z-index: 12;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 16px;
  flex-direction: row;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav a {
  color: #F5F7FA;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 4px;
  transition: background 0.24s, color 0.25s;
}
nav a:hover, nav a:focus {
  background: rgba(79,175,119,0.18);
  color: #4FAF77;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #4FAF77;
  font-size: 2.1rem;
  margin-left: 20px;
  border-radius: 6px;
  padding: 2px 14px;
  border: 2px solid transparent;
  transition: border-color 0.2s, background 0.25s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  border-color: #4FAF77;
  background: rgba(35,56,106,0.14);
  color: #44DEFD;
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1500;
  width: 100vw;
  height: 100vh;
  background: #181e2a;
  box-shadow: 0 0 90px 20px rgba(35,56,106,0.38);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 0 24px;
  /* Hide by default: */
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.28,1.1,.5,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #4FAF77;
  background: none;
  border: none;
  padding: 0 4px 0 0;
  margin-bottom: 30px;
  border-radius: 6px;
  transition: background 0.18s, color 0.25s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(79,175,119,0.1);
  color: #44DEFD;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 34px;
}
.mobile-nav a {
  color: #F5F7FA;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background .22s, color .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23386A;
  color: #4FAF77;
  text-decoration: none;
}

/* Only show burger on mobile */
@media (max-width: 980px) {
  nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* ============ MAIN CONTENT ============ */
main {
  min-height: 60vh;
  padding-bottom: 70px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1B253C;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 4px 32px 0 rgba(30,44,88,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
section:last-child {
  margin-bottom: 0;
}

/* ============ FEATURE GRID ============ */
.feature-grid, .feature-item, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div, .feature-item {
  background: #182033;
  border-radius: 15px;
  box-shadow: 0 0 20px 0 rgba(79,175,119,0.09);
  padding: 25px 22px 20px 22px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 330px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.20s, transform 0.2s;
  position: relative;
  border: 1.5px solid transparent;
}
.feature-grid > div:hover, .feature-item:hover {
  box-shadow: 0 2px 24px 1px #23386A, 0 0 14px 2px #44DEFD;
  border: 1.5px solid #4FAF77;
  transform: translateY(-3px) scale(1.03);
  z-index: 2;
}
.feature-grid img {
  height: 36px; margin-bottom: 9px;
  filter: drop-shadow(0px 0px 8px #4FAF77cc);
}

/* ============ CARDS & CARD-CONTAINER ============ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #212C47;
  border-radius: 16px;
  box-shadow: 0 9px 32px 0 rgba(35,56,106,0.11);
  padding: 36px 28px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 2px 28px #44DEFD, 0 0 18px #4FAF77;
  transform: translateY(-8px) scale(1.04);
}

/* ============ VISUAL ACCENTS/NEON ============ */
.card,.feature-grid > div, .testimonial-card, section, .cta, .cta.primary {
  border: 1.5px solid transparent;
  transition: box-shadow .18s, border-color .20s, transform .19s;
}
.card:hover, .cta.primary:hover, .feature-grid > div:hover, .testimonial-card:hover {
  border-color: #44DEFD;
  box-shadow: 0 2px 22px #44DEFD88, 0 0 8px #4FAF77;
  z-index: 3;
}

/* ============ CTA BUTTONS ============ */
.cta,
button.cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #23386A;
  color: #F5F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 40px;
  border: 2px solid #4FAF77;
  box-shadow: 0 0 8px #44DEFD77;
  transition: background .22s, color .2s, box-shadow .2s, border-color .20s;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.cta.primary,
button.cta.primary {
  background: #4FAF77;
  color: #19243E;
  border-color: #44DEFD;
  box-shadow: 0 0 22px #44DEFD99, 0 0 8px #4FAF7799;
}
.cta:hover, .cta:focus, .cta.primary:hover, .cta.primary:focus {
  background: #44DEFD;
  color: #19243E;
  border-color: #4FAF77;
  box-shadow: 0 2px 22px #44DEFD, 0 0 16px #4FAF77aa;
  z-index: 4;
}

/* ============ BLOCKQUOTES (for testimonials) ============ */
blockquote {
  font-size: 1.13rem;
  font-style: italic;
  color: #232D3B;
  background: #EAF8F1;
  border-left: 4px solid #4FAF77;
  padding: 19px 18px 19px 22px;
  margin-bottom: 10px;
  border-radius: 9px;
  box-shadow: 0 1px 12px #44DEFD22;
}
cite {
  color: #219271;
  font-size: 1rem;
  margin-left: 12px;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7FA;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px #18324a15;
  border: 1.5px solid #44DEFD33;
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  color: #23386A;
  padding: 0; margin: 0;
  font-size: 1.11rem;
}
.testimonial-card cite {
  color: #219271;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* ============ LAYOUT & FLEX ALIGNMENTS ============ */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }

.text-section {
  margin-bottom: 22px;
}

/* ============ TIMELINE STYLE ============ */
.timeline {
  margin: 32px 0 18px 0;
  background: #202944;
  padding: 20px 19px 17px 32px;
  border-left: 5px solid #44DEFD;
  border-radius: 9px;
  color: #F5F7FA;
  font-size: 1rem;
}
.timeline ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.timeline li {
  margin-bottom: 3px;
  line-height: 1.5;
}

/* ============ CONTACT LISTS & DETAILS ============ */
ul li img {
  height: 22px;
  vertical-align: middle;
  margin-right: 7px;
}

/* ============ FOOTER ============ */
footer {
  background: #182539;
  border-top: 2px solid #4FAF77;
  padding: 32px 0 20px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: #4FAF77 ;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.22s;
}
footer nav a:hover { color: #44DEFD; }
.footer-contact {
  font-size: 0.97rem;
  color: #F5F7FA;
  opacity: 0.92;
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2400;
  background: #222D46;
  color: #F5F7FA;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 18px 18px 18px;
  border-top: 3px solid #44DEFD;
  gap: 20px;
  box-shadow: 0px -10px 30px 0 #23386A55;
  animation: cookie-slide-up .6s cubic-bezier(.42,1.14,.56,1);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-left: 14px;
}
.cookie-banner button,
.cookie-banner .cta {
  padding: 8px 20px;
  border-radius: 22px;
  background: #23386A;
  color: #F5F7FA;
  border: 2px solid #4FAF77;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 2px;
  transition: background .2s, color .21s, border-color .20s;
  cursor: pointer;
}
.cookie-banner .cta.primary {
  background: #4FAF77;
  color: #19243E;
  border-color: #44DEFD;
}
.cookie-banner button:hover, .cookie-banner .cta.primary:hover {
  background: #44DEFD;
  color: #19243E;
  border-color: #4FAF77;
}

/* ============ COOKIE SETTINGS MODAL ============ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28,39,64,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .31s cubic-bezier(.44,1.11,.52,1);
}
@keyframes fadein {
  0% {opacity:0;}
  100%{opacity:1;}
}
.cookie-modal {
  background: #222D46;
  border-radius: 18px;
  padding: 36px 27px 27px 27px;
  min-width: 320px;
  max-width: 98vw;
  color: #F5F7FA;
  box-shadow: 0 8px 64px #23386A66;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #44DEFD;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 11px 0 7px 0;
}
.cookie-modal label {
  font-size: 1.02rem;
  color: #F5F7FA;
}
.cookie-modal input[type=checkbox] {
  accent-color: #4FAF77;
  width: 19px;
  height: 19px;
  border-radius: 4px;
  vertical-align: middle;
  margin-bottom: 1px;
}
.cookie-modal .category-off {
  color: #bbb;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  margin-top: 21px;
  display: flex;
  gap: 13px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 17px;
  font-size: 1.5rem;
  color: #44DEFD;
  background: none;
  border: none;
  padding: 2px 7px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.16s;
}
.cookie-modal .close-modal:focus, .cookie-modal .close-modal:hover {
  background: #4FAF7722;
}

/* ============ RESPONSIVE STYLES ============ */
@media (max-width: 980px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  footer nav { flex-direction: row; flex-wrap: wrap; gap: 17px; }
  footer .footer-contact { margin-top: 15px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section { padding: 25px 7px; margin-bottom: 38px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .feature-grid, .card-container, .content-grid, .card-grid, .feature-item {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .content-grid, .card-content, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .testimonial-card { padding: 14px; }
  .feature-grid > div, .feature-item, .card {
    min-width: 94vw;
    max-width: 100vw;
    padding-left: 10px; padding-right: 10px;
  }
  .mobile-menu {
    padding: 17px 6vw 0 6vw;
  }
}
@media (max-width: 480px) {
  html { font-size: 13px; }
  header img {
    height: 32px;
  }
  .cta, .cta.primary { padding: 10px 17px; font-size: 1rem; }
  .cookie-modal { padding: 20px 6px; }
  .cookie-banner { padding: 13px 3px 11px 3px; }
}

/* ============ MISC MICRO-INTERACTIONS ============ */
.cta, .cta.primary, .feature-grid > div, .card, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal, .cookie-banner {
  transition: box-shadow .22s, border-color .19s, background .14s, color 0.19s, transform 0.18s;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.5px solid #44DEFD33;
  background: #EDF3EF;
  color: #23386A;
  padding: 10px 12px;
  margin-bottom: 15px;
  transition: border 0.14s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #44DEFD;
}

/* ============ SCROLLBAR CUSTOMIZATION FOR TECH ============ */
::-webkit-scrollbar {
  width: 10px;
  background: #151D2E;
}
::-webkit-scrollbar-thumb {
  background: #222D46;
  border-radius: 8px;
  box-shadow: 0 0 8px #44DEFD55;
}
::-webkit-scrollbar-thumb:hover {
  background: #44DEFD;
  box-shadow: 0 0 22px #44DEFD;
}

/* ============ ACCENTS - NEON DIVIDER, HOVER EFFECTS ============ */
hr, .divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #44DEFD 0%, #4FAF77 97%);
  margin: 28px 0;
  border-radius: 4px;
}

/* ============ Z-INDEX LAYERS ============ */
header { z-index: 1000; }
footer { z-index: 900; }
.mobile-menu { z-index: 1300; }
.cookie-banner { z-index: 2400; }
.cookie-modal-overlay { z-index: 3500; }

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