/* RESET AND BASE STYLES */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #182A38;
  color: #F3F8ED;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.24s cubic-bezier(.77,0,.18,1);
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* BRANDING AND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #F3F8ED;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
p, li, ul, .subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #F3F8ED;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.2rem;
  color: #A8F6C1;
  font-weight: 500;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

/* CONTAINER AND SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(38,91,74, 0.15);
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 rgba(38,91,74,0.06);
}
@media (max-width: 768px) {
  .section { margin-bottom: 36px; padding: 24px 8px; border-radius: 12px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* NAVIGATION BAR */
header {
  background: #182A38;
  border-bottom: 1.5px solid #273947;
  box-shadow: 0 2px 12px 0 rgba(38,91,74,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 20px;
}
.logo img {
  height: 48px;
  transition: filter 0.2s;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #A8F6C1;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  background: #265B4A;
  color: #00FFB9;
  outline: none;
}

.btn-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #182A38;
  background: linear-gradient(90deg,#A8F6C1,#00BABE);
  border: none;
  border-radius: 28px;
  padding: 10px 32px;
  font-size: 1.12rem;
  margin-left: 8px;
  box-shadow: 0 2px 16px 0 rgba(0,255,185,0.10);
  cursor: pointer;
  transition: background 0.19s, color 0.22s, box-shadow 0.22s;
  outline: none;
  text-shadow: 0 0 6px #fff8, 0 0 12px #00FFB977;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,transparent,#FFF7,#00FFB9 80%,transparent);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#00FFB9,#0B7860);
  color: #0A2321;
  box-shadow: 0 4px 20px #00FFB946;
  outline: none;
}
.btn-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #00FFB9;
  background: #263140;
  border: 1.5px solid #353B4D;
  border-radius: 24px;
  padding: 8px 28px;
  font-size: 1rem;
  margin-left: 4px;
  box-shadow: 0 2px 8px 0 rgba(0,255,185,0.05);
  cursor: pointer;
  text-shadow: 0 0 5px #23fff533;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #00FFB9;
  color: #263140;
  border: 1.5px solid #00FFB9;
  text-shadow: none;
  outline: none;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #00FFB9;
  cursor: pointer;
  z-index: 1211;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #A8F6C1;
  outline: 2px solid #00FFB9;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 42, 56, 0.98);
  z-index: 1332;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 16px 12px 24px;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.81,0,.18,1);
  box-shadow: -8px 0 40px 0 rgba(0,255,185,0.06);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #00FFB9;
  font-size: 2.3rem;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 1400; 
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F3F8ED;
  background: none;
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 12px 12px 6px;
  width: 100%;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #00FFB933;
  color: #00FFB9;
}
@media (max-width: 1024px) {
  .mobile-menu { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none!important; }
}

/* --- HERO AND FEATURE GRIDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
}
@media (max-width: 900px){
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px){
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #1B2630;
  border-radius: 15px;
  box-shadow: 0 2px 12px #00bab827;
  padding: 28px 24px;
  min-width: 210px;
  min-height: 210px;
  flex: 1 1 240px;
  transition: box-shadow 0.19s, background 0.14s;
  position: relative;
  margin-bottom: 20px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 4px #00FFB9cc);
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #A8F6C1;
  margin-bottom: 2px;
}
.feature-item p{
  font-size: 1rem;
  color: #F3F8ED;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 8px 28px #00ffb925, 0 2px 16px #00bab822;
  background: #222F44;
}

/* --- PAGE STRUCTURE FLEX CLASSES --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #202B3A;
  border-radius: 15px;
  box-shadow: 0 2px 12px #265B4A55;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  flex: 1 1 240px;
  transition: box-shadow 0.17s, background 0.17s;
}
.card:hover, .card:focus {
  background: #122026;
  box-shadow: 0 8px 30px #00FFB949;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}
.text-section {
  margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F3F8ED;
  color: #182A38;
  border-radius: 18px;
  box-shadow: 0 2px 16px #00FFB912;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  border-left: 4px solid #00FFB9;
  position: relative;
}
.testimonial-card p {
  color: #182A38;
  font-size: 1.09rem;
  margin: 0 0 6px 0;
}
.testimonial-card span {
  color: #265B4A;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}

@media (max-width: 768px){
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 11px;
  } 
}

/* FAQ ACCORDION */
.faq-accordion {
  margin-top: 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #1F3036;
  border-radius: 11px;
  box-shadow: 0 1px 8px #00ffb911;
  padding: 16px 18px;
  transition: box-shadow 0.16s, background 0.14s;
  margin-bottom: 18px;
}
.faq-item strong {
  color: #A8F6C1;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
}
.faq-item p {
  margin-top: 4px;
  color: #F3F8ED;
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 6px 24px #00ffb91d;
  background: #263140;
}

/* FOOTER */
footer {
  background: #151a25;
  border-top: 1px solid #265B4A66;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0;
}
.footer-logo img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 0 7px #00FFB977);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}
.footer-nav a {
  color: #A8F6C1;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #00FFB9;
  text-decoration: underline;
  outline: none;
}
.footer-contact p,
.footer-newsletter p {
  color: #F3F8ED;
  font-size: 0.97rem;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 4px 0;
}

@media (max-width: 1024px){
  .footer-content {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  width: 100%;
  background: #1F4044;
  color: #fff;
  padding: 20px 16px 22px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  box-shadow: 0 -2px 16px #00FFB933;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cb-slide-up 0.5s cubic-bezier(.67,0,.23,1);
}
@keyframes cb-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 260px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 20px;
  cursor: pointer;
  background: #00FFB9;
  color: #182A38;
  font-weight: 700;
  margin: 0 2px;
  box-shadow: 0 2px 10px #00FFB922;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #12e296;
  color: #151a25;
  outline: none;
}
.cookie-btn.secondary {
  background: #F3F8ED;
  color: #182A38;
}

.cookie-btn.settings {
  background: #263140;
  color: #00FFB9;
  border: 1.5px solid #00FFB9;
}
.cookie-btn.settings:hover {
  background: #00FFB9;
  color: #263140;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    padding: 13px 9px 17px 9px;
  }
}

/* COOKIES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0;left:0;right:0;bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(24,42,56,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9200;
  animation: cm-fade-in 0.39s cubic-bezier(.54,0,.26,1);
}
@keyframes cm-fade-in {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #212F36;
  border-radius: 18px;
  max-width: 420px;
  width: 90%;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 16px 60px #00bab827,0 2px 10px #00FFB945;
  color: #fff;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: cm-pop-in 0.41s cubic-bezier(.54,0,.26,1);
}
@keyframes cm-pop-in {
  from { transform: translateY(20px) scale(0.9); opacity:0; }
  to   { transform: translateY(0)   scale(1);   opacity:1; }
}
.cookie-modal h2 {
  color: #A8F6C1;
  margin-bottom: 0;
  font-size: 1.36rem;
  font-weight: 700;
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #192230;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #F3F8ED;
  font-weight: 500;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  appearance: none;
  background: #444d5c;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: #00FFB9;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 11px;
  background: #fff;
  transition: transform 0.16s;
}
.cookie-modal .cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .cookie-category[data-essential] .cookie-toggle {
  opacity: 0.4; pointer-events: none;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 1.56rem;
  color: #00FFB9;
  cursor: pointer;
  z-index: 15;
}
.cookie-modal-close:hover { color: #fff; }

/* Accessibility / Focus Styling */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid #00FFB9;
  outline-offset: 2px;
  transition: outline .15s;
}

/* SCROLLBAR MODERNIZATION */
body::-webkit-scrollbar {
  width: 10px;
  background: #1B2630;
}
body::-webkit-scrollbar-thumb {
  background: #265B4A;
  border-radius: 7px;
}

/* --- RESPONSIVE SCALE --- */
@media (max-width: 700px) {
  .nav-container,
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-logo img {
    width: 46px;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 7px 18px;
  }
}
@media (max-width: 425px) {
  footer .container, .container { padding: 0 3px; }
  .btn-primary, .btn-secondary {
    padding: 6px 8px;
    font-size: 0.97rem;
  }
}

/* CARD LAYOUTS (Generic) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ANIMATIONS & MICRO INTERACTIONS */
.card,
.feature-item,
.faq-item,
.btn-primary,
.btn-secondary {
  transition: box-shadow 0.18s cubic-bezier(.44,0,.37,1),background 0.15s;
}
/* Neon glow on interactive elements */
.btn-primary:active, .btn-secondary:active {
  box-shadow: 0 0 15px 5px #00FFB988 !important;
}

/* Utility */
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }
.gap-20 { gap: 20px; }

/* Hide visually but allow screen reader access */
.sr-only {
  border:0;clip:rect(0 0 0 0);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;
}
