/* --------------------------------------------------
   CSS RESET & BASE STYLES (Normalize + Reset)
-------------------------------------------------- */
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,
u,
var,
b,
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 {
  font-size: 100%; /* 16px */
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  background-color: #121A27;
  color: #E8EFFA;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.7,.35,.53,.86);
}
img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  color: inherit;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ------------------------------------
   Typography (Futuristic hierarchy)
------------------------------------ */
h1 {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #29C06B;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #E8EFFA;
  margin-bottom: 8px;
}
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E8EFFA;
}
p, ul, ol, li, a, span {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1.0625rem;
  color: #E8EFFA;
}
strong, b {
  color: #fff;
}
.text-section p {margin-bottom: 16px;}

/* Typography scale for visual hierarchy */
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
  h3 {font-size: 1.125rem;}
}

/* ---------------------------------
   Layout Containers
--------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Section Spacing - REQUIRED PATTERN */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 32px 8px;
  }
}

/* Flex box containers for grids */
.features-grid,
.services-preview-grid,
.services-list,
.investment-types-grid,
.training-modules-list,
.service-list,
.team-list,
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.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: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .features-grid,
  .services-preview-grid,
  .services-list,
  .investment-types-grid,
  .training-modules-list,
  .service-list,
  .team-list,
  .usp-list,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.card-container, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card, .testimonial-card, .service-preview, .service-item, .investment-item, .feature-item, .training-item, .team-bio, .usp-item {
  margin-bottom: 20px;
  position: relative;
  background: #192948;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(41,192,107,0.08), 0 1.5px 8px rgba(32,65,110,0.10);
  padding: 30px 20px;
  transition: box-shadow .18s cubic-bezier(.6,.35,.7,.86), transform .18s cubic-bezier(.6,.35,.7,.86);
  z-index: 1;
  border: 1.5px solid rgba(32,65,110,0.17);
  min-width: 220px;
}
.card:hover, .testimonial-card:hover, .service-preview:hover, .service-item:hover, .investment-item:hover, .feature-item:hover, .training-item:hover {
  box-shadow: 0 8px 32px 0 rgba(41,192,107,0.22), 0 3px 16px rgba(41,192,107,0.14);
  transform: translateY(-6px) scale(1.025);
}

@media (max-width: 768px) {
  .card, .testimonial-card, .service-preview, .service-item, .investment-item, .feature-item, .training-item, .team-bio, .usp-item {
    padding: 18px 11px;
    min-width: unset;
  }
}

.testimonial-list {
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F7FB;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(54,122,183,0.11);
  color: #19305A;
  font-size: 1.0625rem;
  margin-bottom: 20px;
  border: 1px solid rgba(32,65,110,0.14);
  transition: box-shadow .17s cubic-bezier(.6,.35,.7,.86), transform .17s cubic-bezier(.6,.35,.7,.86);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,65,110,0.17), 0 3px 16px rgba(41,192,107,0.06);
  transform: translateY(-3px) scale(1.012);
  border-color: #29C06B;
}
.testimonial-card p {
  color: #20416E;
  font-size: 1.0625rem;
  margin-bottom: 0;
}
.testimonial-client strong {
  color: #219953;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.testimonial-client {
  color: #333;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rating {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFCE47;
  font-size: 1.05rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #162644;
  border-radius: 13px;
  padding: 28px 18px;
  box-shadow: 0 3px 15px rgba(41,192,107,.09);
  margin-bottom: 20px;
  min-width: 210px;
  border: 1px solid rgba(41,192,107,0.11);
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: #29C06B;
  font-weight: 700;
  font-size: 1.15rem;
}

/* Service previews, items (index/services) */
.service-preview, .service-item {
  background: #162C48;
  border-radius: 13px;
  box-shadow: 0 3px 15px rgba(32,65,110,.08);
  padding: 30px 18px 22px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(41,192,107,0.09);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}
.service-preview a, .service-item a {
  color: #29C06B;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 10px;
  transition: color .18s cubic-bezier(.6,.35,.7,.86);
}
.service-preview a:hover, .service-item a:hover {
  color: #20416E;
}


.investment-item, .training-item {
  background: #171D32;
  border-radius: 13px;
  box-shadow: 0 4px 18px rgba(54,122,183,0.12);
  padding: 27px 19px 19px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(41,192,107,0.12);
  min-width: 210px;
}
.investment-item img, .training-item img {
  width: 35px;
  height: 35px;
  margin-bottom: 7px;
}
.training-item span {
  color: #219953;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.training-item a,
.service-item a,
.service-preview a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #29C06B;
  text-decoration: underline;
  font-size: 1rem;
  transition: color .17s cubic-bezier(.6,.35,.7,.86);
}
.training-item a:hover,
.service-item a:hover,
.service-preview a:hover {
  color: #20416E;
}

/* Team / USP (About) */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-bio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #162B46;
  border-radius: 11px;
  padding: 24px 16px;
  min-width: 220px;
  box-shadow: 0 3px 12px rgba(54,122,183,0.12);
  border: 1px solid rgba(41,192,107,.08);
  margin-bottom: 20px;
}
.team-bio img { width: 44px; height: 44px; margin-bottom: 4px;}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #162442;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(41,192,107,0.14);
  font-size: 1.06rem;
  color: #29C06B;
  margin-bottom: 20px;
  border: 1px solid rgba(41,192,107,0.09);
}
.usp-item img {
  width: 28px;
  height: 28px;
}

/* FAQ & List Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F2F7FC;
  color: #172C3B;
  border-radius: 10px;
  padding: 19px 18px;
  font-size: 1.0625rem;
  box-shadow: 0 1.5px 5px rgba(32,65,110,.09);
  border: 1px solid rgba(32,65,110,.11);
  margin-bottom: 20px;
}
.faq-item h3 {
  color: #20416E;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.faq-item p {
  color: #333;
  margin-bottom: 0;
  font-size: 1rem;
}

/* CONTACT SECTION */
.contact-details,
.contact-map {
  background: #152441;
  border-radius: 10px;
  padding: 15px 17px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(54,122,183,0.09);
  border: 1px solid rgba(54,122,183,0.09);
}
.contact-details img {width: 22px; height: 22px; vertical-align: middle; margin-right: 6px;}
.contact-details a {color: #219953; text-decoration: underline;}
.contact-details a:hover {color: #20416E;}

/* ---------------------------------
   BUTTONS & ACTIONS (CTA, etc)
--------------------------------- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #29C06B;
  color: #fff;
  box-shadow: 0 2px 8px #29C06B40, 0 1.5px 8px rgba(32,65,110,0.08);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 13px 32px;
  border: none;
  transition: background .14s cubic-bezier(.7,.35,.53,.86), transform .13s cubic-bezier(.7,.35,.53,.86), box-shadow .16s cubic-bezier(.6,.3,.7,.86);
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.cta:hover, .cta:focus {
  background: #219953;
  color: #fff;
  box-shadow: 0 4px 18px #29C06B50, 0 1.5px 10px rgba(32,65,110,0.11);
  transform: translateY(-2px) scale(1.02);
}

/* -------------------------------------------
   HEADER, NAVIGATION, & MOBILE NAV STYLES
------------------------------------------- */
header {
  width: 100%;
  padding: 0 0 0 0;
  background: #181E2C;
  box-shadow: 0 2px 18px rgba(41,192,107,0.05), 0 0.7px 4px rgba(32,65,110,0.10);
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  min-height: 68px;
}
header > a img {
  height: 48px;
  margin: 11px 0 11px 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 38px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #E8EFFA;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 7px 15px;
  transition: color 0.13s cubic-bezier(.7,.37,.61,1), background 0.13s cubic-bezier(.7,.37,.61,1);
}
header nav a:hover,
header nav a:focus {
  background: #162C48;
  color: #29C06B;
}
header nav a.cta {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  header nav {
    gap: 13px;
    margin-right:16px;
  }
  header > a img {
    margin-left: 11px;
  }
}

/*----- Responsive Nav: Mobile Hamburger ----*/
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    color: #29C06B;
    font-size: 2rem;
    border: none;
    padding: 8px 20px;
    transition: background .13s, color .15s;
    border-radius: 6px;
    margin: 0 14px 0 auto;
  }
  .mobile-menu-toggle:hover {
    background: #223554;
    color: #fff;
  }
}

/* ----- Mobile Menu Overlay ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,29,50,0.98);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.64,.04,.35,.9);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #29C06B;
  background: none;
  border: none;
  padding: 12px 28px 5px 0;
  align-self: flex-end;
  margin-top: 18px;
  margin-bottom: 9px;
  transition: color .18s;
}
.mobile-menu-close:hover {color: #fff;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 10px 35px 10px 32px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.mobile-nav a {
  color: #E8EFFA;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  width: 100%;
  border-radius: 7px;
  text-align: left;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #162C48;
  color: #29C06B;
}

@media (min-width: 901px) {
  .mobile-menu {display: none;}
}

/*--------------------------------------------------
   MAIN: Hero + Section backgrounds & Gradient Stripe
---------------------------------------------------*/
section:nth-child(odd) {
  background: #181E2C;
}
section:nth-child(even) {
  background: #192948;
}
section {
  border-radius: 32px;
  box-shadow: 0 12px 44px 0 rgba(21,44,66,0.10);
  margin-bottom: 60px;
}
@media (max-width:768px) {
  section {
    border-radius: 12px;
    margin-bottom: 32px;
  }
}

/* Visual neon line/stripe (futuristic accent) */
.section:before {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  border-radius: 3px;
  margin-bottom: 24px;
  background: #29C06B;
  opacity: 0.66;
}
section:first-of-type:before {
  background: #219953;
  opacity: 0.9;
}

/* Remove redundant before for nested sections */
.content-wrapper > section:before {display: none;}

/* ------------------------------------
   FOOTER
-------------------------------------- */
footer {
  width: 100%;
  background: #141B29;
  color: #E8EFFA;
  padding: 32px 0 6px 0;
  box-shadow: 0 -2px 10px rgba(32,65,110,0.08);
  border-top: 1.5px solid #162547;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 19px;
  justify-content: flex-start;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #E8EFFA;
  padding: 5px 0;
  border-radius: 3px;
  transition: color .12s, background .15s;
}
footer nav a:hover {color: #29C06B; background: #162A47;}

.footer-contact-details {
  color: #B4CBEB;
  font-size: .97rem;
  margin-bottom: 6px;
  line-height: 1.8;
}
.footer-contact-details img {
  width: 18px; height: 18px; vertical-align: middle; margin-right: 5px;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 3px;
}
.footer-social a img {
  width: 30px; height:30px;
  filter: drop-shadow(0px 0px 5px #29C06B60) drop-shadow(0px 1.5px 5px #21995330);
  transition: filter .19s;
}
.footer-social a:hover img {
  filter: drop-shadow(0px 0px 6px #00ffb078) hue-rotate(25deg);
}

@media (max-width: 768px) {
  footer .container {padding-left: 0; padding-right: 0;}
  .footer-contact-details {font-size: .91rem;}
  .footer-social {gap: 9px;}
}

/* ------------------------------
   MISCELLANEOUS UI
------------------------------- */
ol, ul {
  margin: 0 0 1.45em 1.3em;
  padding: 0;
}
ol li {
  position: relative;
  margin-bottom: 10px;
  color: #E8EFFA;
  font-size: 1.02rem;
}
ul li {
  position: relative;
  margin-bottom: 10px;
  color: #E8EFFA;
  font-size: 1.02rem;
}
ul li img,
ol li img {
  margin-right: 8px;
  vertical-align: middle;
}

/* ---------------------------------
   Cookie Banner & Preferences Modal
---------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #162A44;
  color: #E8EFFA;
  box-shadow: 0 -4px 24px rgba(25, 64, 140, 0.16);
  padding: 24px 16px 24px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  z-index: 12000;
  border-top: 3px solid #29C06B;
  opacity: 1;
  transform: translateY(0);
  transition: transform .33s cubic-bezier(.64,.04,.35,.9), opacity .33s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 1.01rem;
  color: #E8EFFA;
}
.cookie-banner .cookie-btn {
  background: #29C06B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  margin-left: 10px;
  margin-right: 4px;
  margin-top: 6px;
  box-shadow: 0 3px 10px #29C06B40;
  transition: background .15s, color .15s, transform .13s cubic-bezier(.7,.35,.53,.91);
}
.cookie-banner .cookie-btn.reject {
  background: #20416E;
  color: #fff;
  border: 1.5px solid #29C06B;
  margin-left: 0;
}
.cookie-banner .cookie-btn.settings {
  background: #162A44;
  color: #29C06B;
  border: 1.5px solid #29C06B;
}
.cookie-banner .cookie-btn:hover {
  background: #219953;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .cookie-btn.settings:hover {
  background: #142139;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 9px 15px 13px;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    min-width: 60px;
    padding: 11px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 7px;
  }
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%) scale(1);
  background: #F8FBFF;
  color: #181E2C;
  border-radius: 17px;
  padding: 34px 29px 27px 32px;
  z-index: 12010;
  box-shadow: 0 16px 44px rgba(32,65,110,0.19);
  min-width: 290px;
  max-width: 95vw;
  opacity: 1;
  transition: opacity 0.32s cubic-bezier(.6,.35,.7,.86), transform .32s cubic-bezier(.64,.04,.37,.90);
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.93);
}
.cookie-modal h2 {
  color: #20416E;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.cookie-modal ul {
  margin-bottom: 18px;
}
.cookie-modal li {
  margin-bottom: 9px;
  color: #183059;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-btn {
  background: #29C06B;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 19px;
  font-weight: 600;
  font-size: 1rem;
  transition: background .17s, color .13s, transform .12s;
  margin-left: 0;
  margin-right: 2px;
}
.cookie-modal .cookie-modal-btn.secondary {
  background: #F0F8ED;
  color: #219953;
  border: 1px solid #219953;
}
.cookie-modal .cookie-modal-btn:hover, .cookie-modal .cookie-modal-btn:focus {background: #219953; color: #fff;}
.cookie-modal .cookie-modal-btn.secondary:hover {background: #D7F4E0; color: #219953;}
@media (max-width: 600px) {
  .cookie-modal {padding: 17px 10px;}
}

/* Cookie modal fake toggles */
.toggle-switch {
  width: 44px;
  height: 22px;
  background: #DDEEEE;
  border-radius: 11px;
  position: relative;
  display: inline-block;
  margin-right: 9px;
}
.toggle-switch input[type=checkbox],
.toggle-switch input[type=radio] {
  display: none;
}
.toggle-switch .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #29C06B;
  border-radius: 50%;
  box-shadow: 0 1.5px 6px #29C06B38;
  transition: left .19s cubic-bezier(.6,.35,.7,.89), background .16s;
}
.toggle-switch input:checked ~ .slider {
  left: 24px;
  background: #219953;
}
.toggle-switch input:disabled ~ .slider {
  background: #B7B7B7;
}

/* ------------------------------------
   Animations
-------------------------------------- */
@keyframes neonPulse {
  0%, 100% {box-shadow: 0 0 0 #29C06B70;}
  50% {
    box-shadow: 0 0 24px #29C06B;
  }
}
.cta, .cookie-banner .cookie-btn {
  animation: neonPulse 2.5s infinite linear alternate;
}

/* --------------------------------------
   SCROLLBARS (subtle for desktop only)
---------------------------------------- */
@media (pointer: fine) {
  ::-webkit-scrollbar {width: 8px; background: #181E2C;}
  ::-webkit-scrollbar-thumb {background: #1d263e; border-radius: 8px;}
  ::-webkit-scrollbar-thumb:hover {background: #29C06B;
  }
}

/* -------------------------------------
   MISC FORMATS, SPACING, UTILITIES
-------------------------------------- */
.text-center {text-align:center;}
.mb-32 {margin-bottom:32px !important;}
.mt-32 {margin-top:32px !important;}
.px-16 {padding-left:16px; padding-right:16px;}
.py-16 {padding-top:16px; padding-bottom:16px;}
.bg-accent {background: #29C06B; color:#fff;}

/* RESPONSIVE HELPERS & UTILITIES */
@media (max-width: 992px) {
  .container {max-width: 99vw;}
}

@media (max-width: 480px) {
  header > a img {height: 39px;}
  h1 {font-size: 1.37rem;}
  h2 {font-size: 1.12rem;}
  .cta {font-size: 1rem; padding: 9px 17px;}
}

/* Prevent overlapping: Padding and min space between elements */
.card-container > *, .testimonial-list > *, .services-preview-grid > *, .features-grid > *, .training-modules-list > *, .service-list > *, .team-list > *, .usp-list > * {
  margin-bottom: 0 !important;
}

/* END -- Disinletam Finance Futuristic CSS */
