/* 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,
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 {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #223046;
  background-attachment: fixed;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f7f7f7;
  /* Subtle geometric pattern overlay */
  background-image:
    linear-gradient(120deg, rgba(35,69,103,0.93) 70%, rgba(191,214,65, .08) 100%),
    repeating-linear-gradient(45deg,#23456722 0 4px,transparent 4px 20px);
}
main {
  flex: 1 1 auto;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

strong, b { font-weight: 700; }

a {
  color: #BFD641;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}

ol, ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(35,69,103,0.95);
  border-radius: 28px;
  box-shadow: 0 6px 42px 0 rgba(191,214,65,0.06);
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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


/* TYPOGRAPHY ---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
h1, .display {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -.03em;
  color: #BFD641;
  text-shadow: 0 2px 24px #234567;
  margin-bottom: 12px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f7f7f7;
  margin-bottom: 12px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #BFD641;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #BFD641;
}
p, li {
  font-size: 1rem;
  color: #f7f7f7;
}

/* BUTTONS ---------------------------- */
.cta-btn,
button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 38px;
  background: #BFD641;
  color: #234567;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  font-size: 1.15rem;
  box-shadow: 0 2px 16px 0 rgba(191,214,65,0.16);
  transition: background .16s, color .16s, box-shadow .28s, transform .1s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .02em;
  outline: none;
  z-index: 1;
}
.cta-btn:hover,
button:hover, input[type="submit"]:hover,
.cta-btn:focus, button:focus {
  background: #fff;
  color: #234567;
  box-shadow: 0 4px 32px 0 #BFD64155;
  transform: translateY(-2px) scale(1.02);
}

/* HEADER, NAVIGATION ---------------------- */
header {
  position: relative;
  z-index: 15;
  background: rgba(35,69,103,0.97);
  box-shadow: 0 2px 20px rgba(35,69,103,0.08);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 16px 12px 16px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #f7f7f7;
  padding: 7px 16px;
  font-weight: 700;
  border-radius: 28px;
  font-size: 1rem;
  transition: color .16s, background .14s, transform .13s;
  position: relative;
}
.main-nav a.cta-btn {
  background: #BFD641;
  color: #223046;
  margin-left: 12px;
  box-shadow: 0 2px 16px 0 rgba(191,214,65,0.14);
  font-size: 1.02rem;
}
.main-nav a:hover, .main-nav a:focus {
  background: #223046;
  color: #BFD641;
  outline: none;
}
/* Burger (mobile) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  width: 48px;
  height: 48px;
  background: #223046;
  color: #BFD641;
  font-size: 2rem;
  border: none;
  border-radius: 14px;
  z-index: 101;
  box-shadow: 0 2px 16px rgba(35,69,103,0.13);
  transition: background .18s, color .18s, box-shadow .12s;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:active { background: #111e2a; }
.mobile-menu-toggle:focus { outline: 2px solid #BFD641; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #223046;
  box-shadow: 0 0 32px #111e2a66;
  padding: 36px 24px 24px 24px;
  transform: translateX(-105vw);
  z-index: 2000;
  transition: transform .33s cubic-bezier(.41,1.07,.3,.98);
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 0 4px 48px #111e2aee;
  animation: menu-fade-in .40s cubic-bezier(.19,.92,.65,1.36) 1;
}
@keyframes menu-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #BFD641;
  font-size: 2.3rem;
  align-self: flex-end;
  cursor: pointer;
  padding: 4px 8px;
  margin-bottom: 18px;
  transition: color .12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
  margin-top: 48px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  padding: 14px 0 14px 10px;
  border-left: 3px solid #BFD641;
  border-radius: 4px;
  transition: color .13s, background .13s, border-left-color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #BFD641;
  background: #111e2a;
  border-left: 3px solid #fff;
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* CORE FLEX LAYOUTS & SPACING ------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #234567;
  border-radius: 18px;
  box-shadow: 0 2px 18px #23456726;
  padding: 32px 24px;
  transition: box-shadow .18s, transform .13s;
}
.card:hover {
  box-shadow: 0 6px 32px #BFD64155, 0 2px 20px #111e2a2c;
  transform: translateY(-4px) scale(1.03);
}

.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: #F7F7F7;
  color: #234567;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #222c3790;
  font-style: italic;
  position: relative;
  font-size: 1.045rem;
  line-height: 1.6;
  transition: box-shadow .14s, transform .10s;
}
.testimonial-card strong {
  color: #BFD641;
  font-weight: 700;
  font-style: normal;
  margin-left: 24px;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px #BFD64145, 0 2px 10px #111e2a1d;
  transform: translateY(-2px) scale(1.01);
}

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

/* Feature grid, product cards, etc */
.feature-grid, .product-cards, .support-options, .blog-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin: 20px 0;
}
.feature-grid > div, .product-cards > div, .support-options > div, .blog-list > div, .faq-list > div {
  flex: 1 1 220px;
  min-width: 225px;
  background: #253a59;
  border-radius: 16px;
  box-shadow: 0 2px 12px #23456728;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  transition: box-shadow .13s, transform .13s;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature-grid > div:hover, .product-cards > div:hover, .support-options > div:hover, .blog-list > div:hover {
  box-shadow: 0 8px 32px #BFD64115, 0 2px 24px #111e2a2e;
  transform: scale(1.025) translateY(-4px);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.category-tags a {
  background: #223046;
  color: #BFD641;
  font-size: .97rem;
  padding: 7px 16px;
  border-radius: 28px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .13s, color .13s;
  margin-bottom: 10px;
}
.category-tags a:hover {
  background: #BFD641;
  color: #223046;
}

/* Blog cards overrides */
.blog-list .text-section {
  background: none;
  box-shadow: none;
  min-width: 210px;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

/* FAQ overrides for accordion look */
.faq-list > div {
  position: relative;
  border-left: 4px solid #BFD641;
  border-radius: 10px;
  background: #1A2636;
}
@media (max-width: 1024px) {
  .feature-grid > div, .product-cards > div, .support-options > div {
    flex: 1 1 180px;
    min-width:160px;
  }
}

/* SUPPORT / WSPARCIE section cards */
.support-options > .text-section h3 img {
  vertical-align: middle;
  margin-right: 8px;
  width: 24px !important;
  height: 24px !important;
}

/* FORM/FOOTER/CONTACT -------------- */
footer {
  background: #223046;
  color: #BFD641;
  padding: 44px 0 10px 0;
  border-top: 4px solid #BFD64122;
  position: relative;
  z-index: 7;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #f7f7f7;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color .11s;
}
.footer-nav a:hover { color: #BFD641; }
.footer-contact {
  min-width: 210px;
  color: #f7f7f7;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-copy {
  display: flex;
  align-items: center;
  font-size: 0.97rem;
  color: #BFD64188;
  width: 100%;
  margin-top: 24px;
  justify-content: center;
}

/* --- SOCIAL ICONS (if any) --- */
footer .socials {
  display: flex;
  gap: 18px;
}
footer .socials a {
  color: #BFD641;
  font-size: 1.25rem;
  transition: color .12s;
}
footer .socials a:hover { color: #fff; }


/* COOKIE CONSENT BANNER & MODAL ------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #223046;
  color: #fff;
  border-top: 2px solid #BFD641;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 28px 16px;
  box-shadow: 0 -4px 32px #23456777;
  font-size: 1.028rem;
  animation: cookie-fade-in .43s cubic-bezier(.37,1.52,.21,1.22) 1;
}
@keyframes cookie-fade-in {
  0% { opacity: 0; transform: translateY(44px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  min-width: 120px;
  font-size: 1rem;
  padding: 10px 24px;
  margin: 0 5px;
  border-radius: 28px;
  border: none;
  background: #BFD641;
  color: #223046;
  transition: background .12s, color .12s, box-shadow .11s;
  box-shadow: 0 2px 10px 0 #BFD64129;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #223046;
}
.cookie-banner .cookie-settings-btn {
  background: #223046;
  color: #BFD641;
  border: 1.5px solid #BFD641;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #BFD641;
  color: #223046;
}
/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(41,50,75,0.81);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modal-fade-in .23s cubic-bezier(.14,1.45,.3,1.0) 1;
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #223046;
  color: #fff;
  max-width: 420px;
  width: 90vw;
  border-radius: 22px;
  padding: 38px 28px 32px 28px;
  box-shadow: 0 10px 52px #23456785;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: #BFD641;
  font-size: 1.55rem;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
}
.cookie-modal .toggle {
  min-width: 32px;
  height: 20px;
  background: #BFD64144;
  border-radius: 20px;
  position: relative;
}
.cookie-modal .toggle input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: 0; right:0; top:0; bottom:0;
  width: 100%; height: 100%;
  cursor: pointer;
}
.cookie-modal .toggle span {
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #BFD641;
  position: absolute;
  left: 1px; top: 1px;
  transition: left .17s;
}
.cookie-modal .toggle input[type=checkbox]:checked + span {
  left: 13px;
  background: #BFD641;
}
.cookie-modal .category-label {
  font-size: 1rem;
  color: #fff;
}
.cookie-modal .category-required {
  color: #BFD641;
  font-size: 0.94rem;
  margin-left: 6px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 19px;
  top: 22px;
  background: none;
  border: none;
  color: #BFD641;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal .close-cookie-modal:hover { color: #fff; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 12px 22px;
}

/* RESPONSIVE DESIGN -------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .section {
    padding: 32px 8px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .testimonial-card strong {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  h1, .display { font-size: 2rem; }
  h2 { font-size: 1.333rem; }
  main {
    padding-bottom: 48px;
  }
  .section {
    padding: 22px 2px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
  .container {
    padding: 0 2px;
    max-width: 100vw;
  }
  .content-wrapper {
    max-width: 100vw;
    gap: 17px;
  }
  .feature-grid, .product-cards, .support-options, .blog-list, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .product-cards > div, .support-options > div, .blog-list > div, .faq-list > div {
    min-width: 0;
    width: 100%;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card, .card {
    flex-direction: column;
    gap: 11px;
    padding: 16px 7px;
    font-size: .96rem;
  }
  .testimonial-card strong { font-size: .99rem; }
}

@media (max-width:500px){
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    font-size: .97rem;
    padding:18px 7px;
  }
  .cookie-modal{padding:22px 8px;}
}

/* MICRO-EFFECTS & FUTURISTIC ACCENTS ----------- */
.section:before {
  content: '';
  position: absolute;
  top: 24px; left: 12px;
  width: 68px; height: 68px;
  background: radial-gradient(circle, #BFD64155 6%, transparent 60%);
  border-radius: 50%;
  opacity: .13;
  z-index: 0;
  pointer-events: none;
}
@media (max-width:767px){
  .section:before{top:8px;left:5px;width:35px;height:35px;}
}
.section h2:after, .content-wrapper > h2:after {
  content: '';
  display: block;
  margin-top: 8px;
  height: 3px;
  width: 52px;
  background: linear-gradient(90deg, #BFD641 30%, #234567 100%);
  border-radius: 3px;
  opacity: .9;
}
.feature-grid > div img, .product-cards > div img {
  width: 38px;
  height: 38px;
  display: block;
  margin-bottom: 7px;
  filter: drop-shadow(0 2px 9px #BFD64144);
}
/* Futuristic border for CTA on hover */
.cta-btn::after {
  content:'';
  position: absolute;
  border-radius: 100px;
  left: -4px; top: -4px; right: -4px; bottom:-4px;
  border: 2px solid #BFD64122;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .14s;
}
.cta-btn:hover::after, .cta-btn:focus::after { opacity: 1; }

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 10px; background: #223046; }
::-webkit-scrollbar-thumb { background: #234567; border-radius: 11px; }
::-webkit-scrollbar-thumb:hover { background:#BFD64188; }

/* Miscellaneous extras ------------------------ */
input, textarea, select, button {
  font-family: inherit;
  font-size:inherit;
}

hr {
  border: none;
  border-top: 1.5px solid #BFD64133;
  margin: 26px 0;
}

/* Utility */
.mb-0{margin-bottom:0 !important;} .mb-1{margin-bottom:8px !important;} .mb-2{margin-bottom:16px !important;} .mb-3{margin-bottom:32px !important;} .mb-4{margin-bottom:48px !important;}
.mt-0{margin-top:0 !important;}   .mt-1{margin-top:8px !important;}   .mt-2{margin-top:16px !important;}   .mt-3{margin-top:32px !important;}   .mt-4{margin-top:48px !important;}

/* Accessibility: Focus states */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #BFD641;
  outline-offset: 2px;
  z-index: 2;
}

/* --- END OF THEME --- */
