/* 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, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #10132a;
  color: #F5F6FA;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  box-sizing: border-box;
  background-color: #10132a;
}
::-webkit-scrollbar {
  width: 7px;
  background: #232648;
}
::-webkit-scrollbar-thumb {
  background: #202457;
  border-radius: 10px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #00B8D4;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover, a:focus {
  color: #F5F6FA;
}
strong {
  font-weight: 700;
}

/* TYPOGRAPHY -------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F5F6FA;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.25rem;
}
p, ul, ol, dl {
  font-size: 1rem;
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
.tagline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #00B8D4;
  font-size: 1.17rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* CONTAINER & LAYOUT ------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  background: rgba(26,35,126, 0.56);
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 4px 24px 0 rgba(0,184,212,0.11);
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #181D3A;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,184,212,0.09);
  position: relative;
  flex: 1 1 340px;
  min-width: 250px;
  transition: transform 0.25s cubic-bezier(.36,1.61,.44,.98), box-shadow 0.23s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(0,184,212,0.19);
  z-index: 3;
}
.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;
}
.testimonial-card {
  background: #F5F6FA;
  color: #222a54;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(0,184,212,0.08);
  margin-bottom: 20px;
  font-size: 1.07rem;
  transition: box-shadow 0.22s, transform 0.22s;
  border-left: 4px solid #00B8D4;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(26,35,126,0.22);
  transform: translateY(-5px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section { 
  margin-bottom: 24px;
}

/* FEATURE GRID (for icons & features, /) ------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
}
.feature-grid li {
  flex: 1 1 250px;
  min-width: 180px;
  background: #181D3A;
  color: #F5F6FA;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,184,212,0.12);
  padding: 18px;
  transition: box-shadow 0.2s, border 0.2s;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid li:hover {
  border: 1.5px solid #00B8D4;
  box-shadow: 0 6px 26px 0 rgba(0,184,212,0.16);
}
.feature-grid img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 1px 4px #00B8D485);
  margin-bottom: 10px;
}

/* FOOTER ----------------------------------------------------------- */
footer {
  margin-top: 30px;
  background: #1A237E;
  color: #F5F6FA;
  padding: 32px 0 16px 0;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 10px 0;
}
.footer-nav a {
  color: #00B8D4;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #F5F6FA;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.footer-social img {
  width: 26px;
  height: 26px;
  filter: brightness(1.65) drop-shadow(0 0 10px #00B8D4);
  transition: filter 0.15s;
}
.footer-social a:hover img {
  filter: brightness(2.5) drop-shadow(0 0 16px #F5F6FA);
}

/* BUTTONS ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  background: #222a54;
  color: #F5F6FA;
  box-shadow: 0 2px 14px rgba(0,184,212,0.08);
  transition: background 0.18s, transform 0.16s, box-shadow 0.16s;
  cursor: pointer;
  outline: none;
  margin-bottom: 10px;
  text-shadow: 0 1px 6px #1A237E55;
}
.btn-primary {
  background: #00B8D4;
  color: #222a54;
  box-shadow: 0 3px 24px 0 rgba(0,184,212,0.23), 0 1.5px 8px 0 #00B8D440;
  border: 1.8px solid #F5F6FA;
  text-shadow: none;
}
.btn:hover, .btn:focus {
  transform: translateY(-2px) scale(1.04);
  background: #222a54;
  color: #00B8D4;
  box-shadow: 0 6px 18px 0 #00B8D499;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1A237E;
  border-color: #00B8D4;
  color: #F5F6FA;
  box-shadow: 0 9px 32px 0 #00B8D4cc;
}

/* LISTS & TEXT ELEMENTS --------------------------------------------- */
dt {
  font-weight: bold;
  margin-top: 18px;
}
dd {
  margin-left: 0px;
  margin-bottom: 10px;
  color: #99e5f5;
}

/* NAVIGATION: DESKTOP ----------------------------------------------- */
header {
  background: #191F43;
  margin-bottom: 0;
  box-shadow: 0 2px 15px 0 rgba(0,184,212,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px;
  padding: 22px 18px 16px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #F5F6FA;
  font-size: 1.03rem;
  font-weight: 600;
  transition: color 0.16s, text-shadow 0.15s;
  position: relative;
  padding: 5px 14px;
}
.main-nav a:not(:first-child):after {
  content: '';
  display: block;
  height: 2px;
  background: #00B8D4;
  opacity: 0;
  width: 90%;
  transition: opacity 0.18s, width 0.22s cubic-bezier(.48,1.3,.56,.78);
  margin: 2px auto 0 auto;
  border-radius: 12px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  opacity: 1;
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #00B8D4;
  text-shadow: 0 0 8px #00B8D4cc;
}
.main-nav img {
  height: 38px;
  margin-right: 14px;
}

/* MOBILE MENU ------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #00B8D4;
  font-size: 2.2rem;
  margin: 0 18px 0 auto;
  cursor: pointer;
  z-index: 41;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #00B8D4;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #10132add;
  z-index: 1001;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.77,0,.18,1), opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #00B8D4;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  cursor: pointer;
  z-index: 1025;
  transition: color 0.17s;
}
.mobile-menu-close:focus {
  outline: 2px solid #00B8D4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 18px;
  margin: 36px 0 0 32px;
}
.mobile-nav a {
  color: #F5F6FA;
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 6px;
  border-radius: 6px;
  transition: color 0.16s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00B8D4;
  color: #191F43;
}

/* COOKIE CONSENT BANNER / Modal ------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(26,35,126,0.98);
  color: #F5F6FA;
  z-index: 2000;
  box-shadow: 0 -2px 20px 0 #00B8D455;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  gap: 24px;
  font-size: 1rem;
  flex-wrap: wrap;
  opacity: 1;
  transition: opacity 0.24s;
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  padding: 10px 20px;
  margin: 0 3px;
  transition: background 0.18s, color 0.13s;
  cursor: pointer;
  font-weight: 700;
}
.cookie-accept {
  background: #00B8D4;
  color: #1A237E;
  border: 1.8px solid #F5F6FA;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #1A237E;
  color: #F5F6FA;
  border: 1.8px solid #00B8D4;
}
.cookie-reject {
  background: #F5F6FA;
  color: #1A237E;
  border: 1.5px solid #00B8D4;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #1A237E;
  color: #F5F6FA;
  border: 1.8px solid #F5F6FA;
}
.cookie-settings {
  background: transparent;
  color: #00B8D4;
  border: 1.5px solid #00B8D4;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #00B8D4;
  color: #1A237E;
}

#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-54%) scale(1);
  min-width: 312px;
  max-width: 90vw;
  max-height: 87vh;
  z-index: 3000;
  background: #222a54;
  color: #F5F6FA;
  padding: 36px 30px 26px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 60px 0 #00B8D444;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: modalUp 0.44s cubic-bezier(.36,1.19,.44,.98);
}
#cookie-modal.active {
  display: flex;
}
@keyframes modalUp {
  from { opacity: 0; transform: translate(-50%,-65%) scale(0.88);}
  to   { opacity: 1; transform: translate(-50%,-54%) scale(1);}
}
#cookie-modal h2 {
  font-size: 1.3rem;
  color: #00B8D4;
  margin-bottom: 6px;
}
#cookie-modal ul {
  padding-left: 20px;
  color: #F5F6FA;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #232648;
  border-radius: 14px;
  position: relative;
  outline: none;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: #00B8D4;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 1.5px;
  width: 14px;
  height: 14px;
  background: #F5F6FA;
  border-radius: 11px;
  transition: left 0.16s, background 0.18s;
}
.cookie-toggle:checked::before {
  left: 18px;
  background: #1A237E;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}

/* RESPONSIVE & ACCESSIBILITY ---------------------------------------- */
@media (max-width: 1240px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 1024px) {
  .feature-grid {
    gap: 18px;
  }
  .content-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
  }
  .main-nav { gap: 18px; }
  .content-wrapper { padding: 28px 10px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-nav { gap: 12px; flex-wrap: wrap; }
  .container { padding-left: 6px; padding-right: 6px; }

  .section { padding: 22px 6px; margin-bottom: 42px; }
  .content-wrapper { padding: 22px 6px; border-radius: 14px; }
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.18rem; }
  .content-wrapper { padding: 12px 2px; }
  .feature-grid li { min-width: 125px; padding: 11px; }
  .testimonial-card { font-size: 0.86rem; }
  #cookie-banner { font-size: 0.92rem; padding: 15px 5px; gap: 10px; }
  #cookie-modal { min-width: 200px; padding: 14px 4vw; }
}

/* MODERN TECH FUTURISTIC VISUAL ACCENTS -----------------------------*/
.section {
  border-radius: 24px 24px 28px 28px;
  background: linear-gradient(102deg,rgba(0,184,212,0.06), rgba(26,35,126,0.30) 67%, rgba(34,42,84,0.23));
  box-shadow: 0 2px 18px 0 #00B8D440;
}
.content-wrapper, .text-section, .card {
  position: relative;
}
.content-wrapper:before {
  content: '';
  position: absolute;
  left: 0;top: 0;right: 0;bottom: 0;
  z-index: 0;
  border-radius: 20px;
  pointer-events: none;
  background: none;
  box-shadow: 0 0 32px 3px #00B8D444 inset;
  opacity: 0.15;
}
.card:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  border: 2px solid transparent;
  background: linear-gradient(120deg,rgba(0,184,212,.12),rgba(26,35,126,0));
  opacity: 0.16;
  z-index: 0;
}
.feature-grid li strong,
.feature-item strong {
  color: #00B8D4;
  font-weight: 700;
}

/* FOCUS & ACCESSIBILITY ---------------------------------------------*/
*:focus-visible {
  outline: 2px solid #00B8D4;
  outline-offset: 1.1px;
}

/* MISC & FINE TUNING ------------------------------------------------*/
.text-section ul {
  color: #00B8D4;
  font-weight: 500;
}
.text-section p strong {
  color: #00B8D4;
}

ol {
  padding-left: 30px;
}
dt {
  color: #00B8D4;
}
dd {
  color: #57e5f7;
}

/* Animations & micro-interactions -----------------------------------*/
.btn, button, .card, .testimonial-card, .feature-grid li, .card {
  transition: box-shadow 0.22s, background 0.18s, color 0.15s, transform 0.21s;
}
.card:active, .btn:active {
  transform: scale(0.99);
}

/* Hide scroll on mobile menu when open (body class added by JS) */
body.menu-open {
  overflow: hidden;
}

/* End of style.css */
