/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}
/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* -------------- NAVBAR ------------------- */
.navbar {
  display: flex;
  background-color: #30323D;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 90vw;
  width: 100%;
  margin: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  justify-self: start;
}

.logo img{
  width: 12vw;
}

.nav-links {
  justify-self: center;
  font-size: 1vw;
}

.nav-links ul{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links ul li{ 
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 3px;
}

.nav-links ul li a{
  color: #E8E9F3;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 2px;
  padding-bottom: 3px;

}

.nav-links ul li a:hover {
  color: #8FE388;
}

.nav-icon {
  height: 12px;
  width: 12px;
}

.nav-drop-menu {
  position: relative;
}

.nav-drop-menu-content {
  position: absolute;
  top: 3rem;
  background-color: #30323D;
  min-width: max-content;
  padding: 1rem 2rem;
  gap: 1rem;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0rem 0rem 0.5rem 0.5rem;
}

.nav-drop-menu:hover .nav-drop-menu-content {
  display: flex;
}

.nav-drop-menu:hover .nav-icon {
  transform: rotate(180deg);
}


.nav-button {
  justify-self: end;
  display: block;
  width: fit-content;
  color: #30323D;
  background-color: #8FE388;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: .8vw; 
  font-weight: 700;
}

.nav-button:hover {
  outline: 2px solid #E8E9F3;
  color: #fff;
  background-color: #006B8F;
}

.nav-drop-menu {
}

.nav-drop-menu:hover {
  border-bottom: 3px solid #8FE388;
  padding-bottom: 0px;
}


.nav-menu-icon {
  display: none;
}

.nav-mobile {
  display: none;
}

@media (max-width: 860px) {

  .nav-container {
    min-height: 3.5rem;
    display: flex;
    justify-content: space-between;
  }

  .logo {
    justify-self: auto;
  }
  
  .nav-mobile {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    position: absolute;
    min-height: calc(100vh - 3rem);
    top: 5rem;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    
    color: #E8E9F3;
    background-color: #30323D;
    padding: 2rem 0rem;
    gap: 2rem;
  }  

  .nav-mobile ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    
  }

  .nav-mobile-logo img{
    height: 3rem;
    width: 12rem;
  }

  .nav-mobile ul li {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem 0rem;
    border-bottom: 1px solid rgba(232, 233, 243, 0.25);
  }
  
  .nav-mobile ul li:hover {
    background-color: rgba(232, 233, 243, 0.15);
  }
  
  .nav-mobile ul li > a {
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    padding: 0rem 2rem;
  }
  
  .nav-mobile-drop-menu a {
    display: flex;
    align-items: center;
  }
  
  .nav-mobile-drop-menu span {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .nav-mobile-drop-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
  }
  
  .nav-mobile-drop-menu-content a {
    font-weight: 500;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    display: flex;
    align-items: center;
  }
  
  .nav-mobile-button {
    align-self: center;
    display: block;
    width: fit-content;
    color: #30323D;
    background-color: #8FE388;
    padding: 14px 1.5rem;
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 700;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-menu-icon {
    display: block;
  }
  
  .nav-button {
    display: none;
    justify-self: auto;
  }

    .nav-links {
    position: fixed;
    top: 64px;
    left:0;
    width: 100%;
    height: 100vh;
    background-color: #30323D;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-links ul li {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: fit-content;
    width: 100%;
    padding: 1.5rem 3px;
  }

  .nav-links ul li:hover {
    background-color: #3d404c;
  }
  
}

/* --------------Footer------------------------- */

footer {
  
  background-color: #30323D;
}

.footer-container {
  max-width: 90vw;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.footer-content {
  
  display: flex;
  justify-content: space-between;
  padding-bottom: 4rem;
}

.footer-links {
  min-width: fit-content;
  width: 100%;
  color: #E8E9F3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.7rem 3rem;

}

.footer-links-section {
  padding: 0rem 0.5rem;
}


.footer-links-section h3{
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5vw;
  color: rgba(232, 233, 243, 0.85);
  padding-bottom: 2rem;
}

.footer-links-section ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-weight: 700;
  color: #FFF;

}

.footer-links-section ul li {
  font-size: 1vw;
}

.footer-links-section a:hover {
  color: #8FE388;
}


.footer-waitlist {
  width: 45%;
  padding: 0.5rem 2rem;
  color: #30323D;
  display: flex;
  flex-direction: column;
  text-align: end;
  align-items: end;
}

.footer-waitlist form {
  display: flex;
  min-width: 90%;
  flex-direction: column;
}

.footer-waitlist input[type=email], input[type=text] {
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background: #FFF;
  margin: 1rem 0rem;
}

.footer-waitlist h2{
  font-size: 1.5vw;
  font-weight: 700;
  color: #E8E9F3;
  margin-bottom: 1.5rem;
}

.certification-logos {
  display: flex;
  justify-content: flex-end; /* keeps them aligned to the right */
  align-items: center;
  gap: 1rem; /* spacing between logos */
  flex-wrap: wrap; /* optional: ensures responsiveness */
}

.certification-logos img {
  height: 5rem; /* same as h-20 */
  width: auto;
  transition: transform 0.2s ease-in-out;
}

.certification-logos img:hover {
  transform: scale(1.05);
}

input[type=submit] {
  color: #30323D;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: #B1E5F2;
  font-weight: 700;
  font-size: 1vw;
  padding: .5vh 1vh;
  margin-left: auto;
}

hr.rounded {
  border-top: 1px solid #E8E9F3;
  border-radius: 5px;
}

.footer-start {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  font-style: normal;
  font-weight: 700;
  background-image: linear-gradient(90deg,#58BC82, #E8E9F3);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-start h1 {
  font-size: 2vw; 
  margin-bottom: 0.5rem;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #e4e4e7;
  font-size: .9vw;
}

.socials a {
  color: #e4e4e7;
  text-decoration: underline;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.socials svg {
  color: #e4e4e7;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.socials a:hover,
.socials a:focus {
  color: #ffffff;
  outline: none;
  transform: scale(1.1);
}

.socials > * {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #e4e4e7 !important;
  margin: 0.5rem;
}

.socials a:hover svg,
.socials a:focus svg {
  transform: scale(1.1);
  color: #ffffff;
  transition: transform 0.3s ease;
}

.socials:hover img,
.socials:focus img {
  transform: scale(1.1);
  color: #ffffff;
  transition: transform 0.3s ease;
}


.footer-end {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
}

.copyright {
  color: #E8E9F3;
  font-size: 1vw;
  padding: 1rem;
}

.footer-mobile-links {
  display: none;
}

@media (max-width: 860px) {

  .footer-content > .logo {
    display: none;
  }

  .footer-container {
    padding: 2rem 0rem;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    display: none;
  }

  .footer-mobile-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: #FFF;
    padding: 2rem 0rem;
  }

  .footer-mobile-links-section {
    border-top: 1px solid rgba(232, 233, 243, 0.25);
    border-bottom: 1px solid rgba(232, 233, 243, 0.25);
    padding: 2rem;

  }
  .footer-mobile-links-section h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
  }
  .footer-mobile-links-section h3 span{
    font-size: 1.5rem;
    font-weight: 700;
  }

  .footer-mobile-links-section li {
    padding-top: 2rem;
    padding-left: 2rem;
    
  }

  .footer-start {
    flex-direction: column;
    text-align: center;
  }

  .footer-start h1 {
    font-size: 2rem;
  }

  .socials {
    font-size: 1rem;
  }

  .footer-end {
    flex-direction: column;
    text-align: center;
  }

  .copyright {
    font-size: .8rem;
  }

  .footer-waitlist {
    width: 100%;
  }

  .footer-waitlist h2{
    font-size: 1.4rem;
  }

}


/* --------------------------------------------- */
.hero {
  background-color: #E8E9F3;
  /* background-image: url("pattern_1.svg"); */
  background-repeat: no-repeat;
  background-position: bottom right;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.hero-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem; 
  padding-bottom: 2rem;
}

.hero-message {
  text-align: left;

  /* Typography */
  font-size: 4vw;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;

  /* Contrast-first gradient */
  background: linear-gradient(
    120deg,
    #2E7FA3 0%,
    #4F9FC3 25%,
    #88b8a2 55%,
    #5FBF8A 75%,
    #2E7FA3 100%
  );
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;

  /* Text mask */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Depth for light backgrounds */
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(46, 127, 163, 0.25);

  padding-bottom: 3vh;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.hero-message::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  filter: blur(20px);
  opacity: 0.35;
  z-index: -1;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0rem;
}

.hero-buttons p{
  padding: 1rem 0rem;
  font-size: 16px;
  display: flex;
  color: #30323D;
  text-align: center;
}

.hero-buttons span{
  margin-left: 6px;
  display: flex;
  text-decoration: underline;
  font-weight: 600;
}

.install-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem 0rem;
}

.button-extension {
  font-weight: 600;
  background-color: #006B8F;
  color: #fff;
  padding: 1vh 2vh;
  border-radius: 0.5rem;
  width: fit-content;
}

.button-extension:hover{
  background-color:#30323D;
}

.quiz {
  color:#006B8F;
  font-weight: 600;
  cursor: pointer;
}

.hero-section {
  width: 100%;
  display: flex;
  flex-direction: row; /* Arrange columns in a row */
  align-items: center; /* Center items vertically */
  justify-content: space-between; /* Ensure the columns are spaced evenly */
  padding: 4rem;
  padding-top: 1rem;
}

.hero-column {
  display: flex; /* Use flexbox for alignment within the column */
  align-items: center; /* Center items vertically within the column */
  justify-content: center; /* Center items horizontally within the column */
  width: 50%; /* Each column takes up 50% of the width */
}

.hero-image {
  min-width: 40vw;
  display: block;
  align-self: center;
  justify-self: center;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 700;
  color: #30323D;
  width: 80%;
}


.hero-benefit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(48, 50, 61, 0.25);
}

.hero-benefit-header > p {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  padding-left: 0.5rem;
  font-size: 1.25vw;
  cursor: pointer; /* Make the headers appear clickable */
}

.hero-benefit-accordion-content {
  font-size: 1vw;
  font-weight: 500;
  padding-left: 1rem;
  padding-bottom: 1rem;
  pointer-events: none; /* Disable pointer events on the content */
}


.first {
  border-top: 5px solid #8FE388;
}

.second {
  border-top: 5px solid #006B8F;
}
.third {
  border-top: 5px solid #58BC82;
}

.hero-benefits :nth-child(3){
  border-bottom: 1px solid rgba(48, 50, 61, 0.25);
}





/*--------------------------------------------------------*/

.supporters {
  background-color: #E8E9F3;
  display: flex;
  align-items: center;
}

.supporters-content h2 {
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  background-image: linear-gradient(90deg,#58BC82, #58A3C8);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.supporters-content {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 1rem 1rem;
}


.supporter-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 1rem;
  margin: 0 auto;
}

.logo-wrapper {
  flex: 0 1 auto; /* Don't grow, allow to shrink if needed */
  width: 100%;
  max-width: 300px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.5rem;
  transition: transform 0.2s ease-in-out;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease-in-out;
}

.logo-img:hover {
  opacity: 1;
}



/* --------------------------------------- */

.Last-CTA {
    background-color: #E8E9F3;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 4rem 4rem;
}

.cta-content {
  width: 100%;
  max-width: 60vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-content h2 {
font-size: 3vw;
font-style: normal;
font-weight: 700;
background-image: linear-gradient(90deg,#58BC82, #58A3C8);
background-size: 100%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
padding-bottom: 2rem;
}

.buttons-cta {
  display: flex;
}

.buttons-cta > * {
  margin: 1rem;
}

.cta-extension {
  font-size: 14px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background-color: #006B8F;
  color: #fff;

  width: fit-content;
}

.cta-extension:hover{
  background-color:#30323D;
}


.button-register {
  background-color: #8FE388;
  outline: 2px solid #30323D;
  color: #30323D;
  padding: 1vh 2vh;
  border-radius: 0.5rem;
  font-weight: 700;
}

.button-register:hover {
  color: #fff;
  background-color: #006B8F;

}


/* --------------------------------------- */

.section__how {
    position: relative;
    width: 100%;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem 0rem;
}

.how-container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 4rem 0rem 0rem;
  display: flex;
  align-items: center;
}

.how-message {
  max-width: 40vw;
  display: flex;
  flex-direction: column;
  align-self: baseline;
  padding-right: 6rem;
}

.how-message h2 {
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  background-image: linear-gradient(90deg,#58BC82, #58A3C8);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-message h3 {
  font-size: 1.25vw;
  font-weight: 700;
  color: #30323D;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.how-message p {
  color: #30323D;
  padding-bottom: 3vw;
  font-size: 1vw;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step h2 {
  color:#30323D;
  font-size: 1.5vw;
  font-weight: 700;
  padding-bottom: 0.5rem;
}

.step p {
  color: rgba(48, 50, 61, 0.50);
  font-weight: 400;
  font-size: 1vw;
}


.progress-bar {
  list-style: none;
  position: relative;
}

.progress-bar li{
  position: relative;
  display: flex;
  flex-direction: row;
  padding-bottom: 3rem;
}

.first-step::after{
  content: "";
  position: absolute;
  top:1.625rem;
  left:1.625rem;
  width: 3px;
  height: 100%;
  background-color: #E8E9F3;
}

.second-step::after{
  content: "";
  position: absolute;
  top:1.625rem;
  left:1.625rem;
  width: 3px;
  height: 100%;
  background-color: #E8E9F3;
}


.first-circle, .second-circle, .third-circle {
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-right: 2rem;
}

.first-circle span, .second-circle span, .third-circle span{
  color: #fff;
  background-color: #8FE388;
  height: 3.5rem;
  width: 3.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.second-circle span{
  background-color: #58BC82;
}

.third-circle span{
  background-color: #006B8F;
}

/* -------------------------------------------- */

.tabs-section {
  position: relative;
  width: 100%;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem 0rem;
}

.tabs-section h1 {
  padding: 2rem;
  font-weight: 700;
  text-align: center;
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  background-image: linear-gradient(90deg,#58BC82, #58A3C8);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabs-container {
  z-index: 2;
  width: 80vw;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 0.625rem;
  border: 2px solid var(--white, #E8E9F3);
  background: #FFF;
  box-shadow: 8px 16px 32px 0px rgba(65, 101, 141, 0.25);
  max-height: 80vh;
  max-width: 90vw;
}

.tabs-content {
  flex: 1; /* ← grow to fill container */
  display: flex;
  padding: 2vw;
  align-items: flex-start; /* ← TOP ALIGN graphics */
  justify-content: space-between;
  min-height: 0; /* ← allow flex child shrinking */
}

.tabs-content-inactive {
  display: none;
}

.tabs-graphic {
  margin: 0rem 2rem;
  background-color: #E8E9F3;
  border-radius: 1rem;
  width: 20vw;
  height: 16vw;
}

.tabs-header {
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

.tabs::before {
  content: "";
  width: 1%;
  height: 3px;
  background-color: #E8E9F3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.tabs {
  font-size: 1vw; 
  position: relative;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #30323D;
  width: 100%;
  height: 6vw;
  padding: 1.5rem;
  cursor: pointer;
  text-align: center;
}

.tab-content-container {
  display: flex;
  flex-direction: column;
  max-width: 70%;
  gap: 1vw;
}

.tabs:hover {
  background: #E8E9F3;
}

.active-tabs {
  font-size: 1vw;
  position: relative;
  color: #5899E2;
  background: rgba(88, 153, 226, 0.10);
}

.active-tabs img {
  filter: invert(65%) sepia(15%) saturate(7078%) hue-rotate(187deg) brightness(94%) contrast(88%);
}

.active-tabs::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #5899E2;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.tab-messages {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.tab-message {
  display: flex;
  color: #5899E2;
  gap: 1rem;
}

.tab-text {
  font-size: 1vw;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #30323D;
  gap: 0.5rem;
}


.tab-text h3 {
  font-size: 1vw;
  font-weight: 700;
}



.learn-more {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #5899E2;
  text-decoration: underline;
  font-weight: 500;
}

.custom-shape-divider-top-1689156214 {
  top: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1689156214 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.custom-shape-divider-top-1689156214 .shape-fill {
  fill: #E8E9F3;
}


.custom-shape-divider-top-2 {
  margin-top: 3rem;
  top: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-2 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
    fill: #E8E9F3;
}

.custom-shape-divider-top-2 .shape-fill {
  fill: #E8E9F3;
}

.custom-shape-divider-top-3 {
  top: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-3 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
    fill: #E8E9F3;
}

.custom-shape-divider-top-3 .shape-fill {
  fill: #E8E9F3;
}

@media (max-width: 860px) {
  
  .hero-message {
    text-align: start;
    font-size: 2.75rem;
    line-height: 2.75rem;
    min-height: 13rem;
  }

  .hero-container {
    flex-direction: column;
    height: 100%;
    padding: 1rem;
  }

  .hero-header {
    display: unset;
    max-height: 18rem;
    padding-bottom: 0rem;
  }

  .hero-section {
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-inline: 0rem;
  }

  .hero-benefits {
    min-width: 85vw;
    width: 100%;
  }

  .hero-image {
    align-self: center;
    justify-self: center;
    min-width: 85vw;
    max-height:60vh;
  }

  .hero-column {
    align-items: center; /* Center items vertically within the column */
    justify-content: center; /* Center items horizontally within the column */
    width: 100%; /* Each column takes up 50% of the width */
  }

  .hero-buttons {
    align-items: center;
    display: none;
    visibility: hidden;
    padding: 0rem;
  }

  .hero-buttons p {
    justify-content: center;
  }

  .hero-benefit p {
    font-size: 1.125rem;
    text-align: left;
  }

  .hero-benefit {
    width: 100%;
  }

  .button-extension {
    font-size: 1rem;
  }

  .mobile-message {
    display: flex;
  }

  .mobile-link {
    color: #0000EE;
    text-decoration: underline;
  }
  
  .mobile-link:hover {
    color: #551A8B;
  }
  
  .mobile-link:visited {
    color: #800080;
  }

  .button-register {
    font-size: 1rem;
  }  

  .footer-waitlist input {
    font-size: 1rem;
  }  

  .how-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    margin: 0rem 1rem;
  }

  .how-message {
    max-width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .how-message h2 {
    font-size: 3rem;
  }

  .how-message h3 {
    font-size: 1.5rem;
  }

  .how-message p {
    font-size: 1rem;
    padding-bottom: 2rem;
  }

  .step h2 {
    font-size: 1.5rem;
  }

  .step p {
    font-size: 1rem;
  }

  .cta-content {
    padding: 0.5rem;
    min-height: 100px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .supporters-content h2 {
    font-size: 2.2rem;
    margin-top: 0rem;
  }

  .tabs-container {
    box-shadow: none;
    width: 100%;
    border: none;
    height: max-content;
    position: relative;
    max-height: fit-content;
  }
  
  .tabs-header {
    width: 100%;
    min-height: 110px;
    overflow-x: scroll;
    padding: 0rem .2rem;
    margin-bottom: 1rem;
    display: flex;
  }
  
  .tabs-section h1 {
    font-size: 2.2rem;
    margin-top: 0rem;
  }
  
  .tabs-header::-webkit-scrollbar {
    display: none;
  }
  
  .tabs {
      height: 12vh;
    padding: 10px 10px;
    cursor: pointer;
    margin: 0 5px;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
  }

  .tab-content-container {
    max-width: 100%;
  }
  
  .tabs.selected {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;

  }
  
  .tabs h3 {
  }

  .tab-text {
    font-size: 1rem;
  }

  .tabs-content-inactive {
    display: none;
  }

  .tabs-content {
    border-radius: 1rem;
    border: 2px solid #E8E9F3;
    box-shadow: 8px 16px 32px 0px rgba(65, 101, 141, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: fit-content;
    overflow-y: auto;
  }

  .tabs-graphic {
    display: none;
  }

  .tab-message h3{
    font-size: 1.125rem;
  }

  .tabs-header h3 {
    font-size: 12px;
  }
  
}
/* 
-------------------Login------------------------ */

.login-section {
  background-color: #E8E9F3;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 1rem;
}

.change_password-container {
  background-color: #E8E9F3;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 1rem;
}

.login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: max-content;
  padding: 1rem 2rem;
  margin: auto;
  background-color: #fff;
  border-radius: 1rem;
  width: max-content;
  box-shadow: 8px 16px 32px 0px rgba(65, 101, 141, 0.25);
}

.login-title h2{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #30323D;
}

.login-error {
  background-color: rgba(239, 62, 54, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.error-text {
  font-weight: 700;
}

.login-form, .input-form {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 1rem;
}

.email-section, .password-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.password-section {
  padding-bottom: 1.5rem;
}

.email-label, .password-label, .input-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #30323D;
}

.email-input, .password-input, .input-field {
  width: 100%;
  background-color: #E8E9F3;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

/* 🆕 Specific OTP input enhancement */
#otp.input-field {
  letter-spacing: 0.4rem;       /* make code digits more readable */
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #F4F5FB;    /* slight contrast */
  border: 1px solid #C8C9D4;
}

#otp.input-field:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: #30323D;        /* subtle blue highlight */
  box-shadow: 0 0 0 2px rgba(91, 127, 255, 0.2);
}

.input-message {
  width: 100%;
  height: 10rem;
  box-sizing: border-box;
  background-color: #E8E9F3;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  align-content: flex-start;
}

.login-button, .form-button {
  background-color: #006B8F;
  color: #fff;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;

  &:hover {
    background-color: #035874;
  }
}

.no-account {
  font-size: 14px;
}

.request-access {
  color:#006B8F;

  &:hover {
    text-decoration: underline;
  }
}

.signin-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border: solid 2px #E8E9F3;
  border-radius: 1rem;
  margin-bottom: 1rem;
  & img {
    height: 32px;
  }

  &:disabled {
    opacity: 50%;
    cursor: not-allowed;
  }

  &:hover {
    background-color: #E8E9F3;
  }
}

.or-divider {
  display: flex;
  flex-direction: row;
  padding: 1rem 0;
}
.or-divider:before, .or-divider:after{
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin: auto;
  color: #3d404c;
}
.or-divider:before {
  margin-right: 10px
}
.or-divider:after {
  margin-left: 10px
}

.personas-container {
  padding: 2rem;
  padding-top: 4rem;
  max-width: 90vw;
  width: 100%;
  margin: 0 auto;
  justify-content: space-around;
}

.section_pricing { 
  position: relative;
  min-height: 70vh;
  width: 100%;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.section_pricing .pricing-header h1{
  text-align: center;
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  margin-top: 2rem;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.section_pricing .pricing-header h2{
  text-align: center;
  font-size: 2vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  background-image: linear-gradient(90deg,#58A3C8, #58BC82);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-container {
  max-width: 90vw;
  margin: 0 auto;
}

.plans-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
  text-align: center;
  padding: 1rem;
  border-bottom: none;
  vertical-align: top;
}

.pricing-table td {
  text-align: center;
  vertical-align: middle;
}

.pricing-table td .checkmark-svg,
.pricing-table td strong {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9vw;
}

.pricing-table th {
  background-color: #30323d;
  color: #e8e9f3;
  min-width: 13vw;
  font-size: 1.2vw;
  font-weight: 700;
  padding: 1rem;
}

.pricing-table .feature-name {
  text-align: left;
  display: flex;
  font-size: 0.9vw;
  align-items: center;
  gap: 0.5rem;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
}

.pricing-table th h2 {
  font-size: 1.8vw;
  margin-bottom: 0.5rem;
  color: #8FE388;
}

.pricing-table th p {
  font-size: 0.9vw;
  margin-bottom: 1rem;
  color: #a0a0a0;
}

.pricing-table th h3 {
  font-size: 1.5vw;
  color: #e8e9f3;
}

.pricing-table tbody tr:nth-child(odd) {
  background-color: #e4e4e7;
}

.pricing-table tbody tr {
  margin-bottom: 1rem;
}

.button-register {
  background-color: #8FE388;
  outline: 2px solid #30323D;
  font-size: 0.9vw;
  color: #30323D;
  padding: 1vh 2vh;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.button-register:hover {
  color: #fff;
  background-color: #006B8F;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tooltip-icon {
  color: #666;
  font-size: 0.9vw;
  cursor: help;
  margin-left: 4px;
}

.pricing-table tbody tr.action-row {
  background-color: transparent;
}

.action-row td {
  padding: 2rem 1rem;
  border-bottom: none;
}

.plan-selector {
  display: none;
}

.mobile-plan {
  display: none;
}

.micro-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

.plan-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  appearance: none;
  background: white;
  cursor: pointer;
  color: #666;
}

.plan-select option[value=""][disabled] {
  display: none;
}

.plan-selector {
  position: relative;
}

.plan-selector::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  pointer-events: none;
}

.checkmark-svg {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin: 0 1rem;
}

@media (max-width: 860px) {
  .pricing-table {
    display: none;
  }

  .plan-selector {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .plan-selector select {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .mobile-plan {
    display: none;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
  }

  .mobile-plan.active {
    display: block;
    min-width: 90vw;
  }

  .mobile-plan h2 {
    font-size: 1.5rem;
    color: #30323d;
    margin-bottom: 0.5rem;
  }

  .mobile-plan p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
  }

  .mobile-plan h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #30323d;
    margin-bottom: 1rem;
  }

  .mobile-plan ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1rem;
  }

  .mobile-plan li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-plan li:last-child {
    border-bottom: none;
  }

  .mobile-plan li s {
    color: #999;
  }

  .feature-with-value {
    display: flex;
    align-items: center;
  }

  .feature-with-value span {
    margin-right: 0.5em; /* This adds space after the colon */
  }

  .mobile-plan .button-register {
    font-size: 1rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .desktop-only {
    display: none;
  }
  
  .mobile-plan .micro-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
  }

  .section_pricing .pricing-header h1 {
    font-size: 3rem;
  }

  .section_pricing .pricing-header h2 {
    font-size: 2rem;
  }

  .feature-with-value,
  .feature-with-checkmark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .feature-with-value span,
  .feature-with-checkmark > span {
    flex: 1;
    margin-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}


/* Base solution styles */
.solution-text {
  text-align: left;
  font-size: 1rem;
  font-style: normal;
  color: #30323D;
}

.solution h1 {
  text-align: center;
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.solution h2 {
  text-align: center;
  font-size: 2vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  line-height: 3.25rem;
  background-image: linear-gradient(90deg, #58A3C8, #58BC82);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 3vh;
}

.solution h3 {
  padding: 1rem 0;
  padding-top: 2rem;
  font-size: 1.5rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.solution h4 {
  font-size: 1.1rem;
  text-align: left;
  font-weight: 600;
  color: #58A3C8;
  margin-bottom: 1rem;
}

.solution p {
  text-align: left;
  padding: 0.5rem 0;
  line-height: 1.6;
}

/* Solution container */
.solution-container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 2rem;
}

.solution-header {
  margin-bottom: 2rem;
}

/* Full-width sections for intro/outro */
.solution-section-full {
  padding: .25rem 0;
  margin-bottom: .25rem;
}

.solution-content-centered {
  max-width: 900px;
  align-content: baseline;
}

/* Alternating image/text sections */
.solution-section {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-bottom: .25rem;
  padding: .25rem 0;
}

.solution-section-reverse {
  flex-direction: row-reverse;
}

.solution-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.solution-image-container img {
  width: 100%;
  margin-right: 2rem;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.solution-text-container {
  flex: 1;
  min-width: 0;
}

.see-solution-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.see-solution-link span {
  text-decoration: underline;
}

/* Caret inherits color from the link */
.see-solution-icon {
  fill: currentColor;
}

/* Hover: text + caret both turn #8FE388 */
.see-solution-link:hover {
  color: #006B8F;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  color: #8fe388;         /* base color from parent */
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, filter 0.2s ease;
}

/* For inline SVGs using currentColor */
.solution-link svg {
  fill: currentColor;
}

/* If your octicon-link.svg is an external file, use filter or opacity */
.solution-link img {
  margin-right: .5rem;
  display: block;
}

/* Hover state */
.solution-link:hover {
 filter: brightness(0) saturate(100%) invert(87%) sepia(11%) saturate(1044%) hue-rotate(71deg) brightness(56%) contrast(89%);
}

/* CTA Section */
.solution-cta {
  text-align: center;
  margin: 4rem 0 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #58BC82 0%, #2E7FA3 100%);
  border-radius: 12px;
}

.solution-cta h3 {
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  padding: 0;
}

.solution-cta p {
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.solution-cta .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #2E7FA3;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Additional media queries can be added for smaller screens */

.requests-section {
  position: relative;
  min-height: 75vh;
  width: 100%;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 0rem 0rem;
}

.request-access-wrap {
  background-color: white;
}

.request-access-form-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #E8E9F3;
  color: #30323D;
  border-radius: 16px;
  padding: 24px;
  max-width: 1136px;
  margin: 48px auto;
}


.request-access-left-column{
  flex: 1;
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 10rem;
}

.request-access-left-column p {
  width: 70%;
}

.request-access-right-column {
  flex: 1;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
  border-radius: 15px;
  padding: 32px;
}

.request-access-decorator-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  transform: rotate(90deg);
}


@media (max-width: 860px) {
  .requests-section {
    min-height: 80vh;
  }

  .request-access-form-container {
    flex-direction: column;
    gap: 32px;
  }
  .request-access-decorator-image  {
    display: none;
  }

  .request-access-left-column{
    flex: 1;
    display: none;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 10rem;
  }
}

.request-access-right-column input[type=text], input[type=email] {
  display: block;
  width: 100%;
  margin: 10px 0;
  background-color: #E8E9F3;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.request-access-right-column select{
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  padding-right: 3rem;
  appearance: none;
  background: #E8E9F3 url('icons/caret-down-bold.svg') no-repeat right 8px center;
  background-size: 15px;
}

.request-access-right-column select {
  display: block;
  width: 100%;
  margin: 10px 0;
}

.request-access-right-column input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 0.25rem;
  background-color: #E8E9F3;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.request-access-right-column input[type=radio]:checked {
  background-color: #58BC82;
}
.request-access-right-column input[type=radio]:checked::before {
  content: '✓'
}

.request-access-registered-trademark {
  display: flex;
  gap: 32px;
  align-items: center;
}

.request-access-registered-trademark-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
}

.request-access-registered-trademark-option {
  display: flex;
  padding: 1rem;
  gap: 4px;
  align-items: center;
}

.request-survey {
  gap: 4px;
  align-items: center;
}

.request-access-warning-icon{
  display: inline;
}

.request-access-trademark-url {
  width: 100%;
}

.request-access-warning-message {
  color: #FF3C38;
  text-align: center;
  margin: 0 auto;
}

.request-access-header {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.request-access-contact-buttons {
  display: flex;
  gap: 16px;
}


.request-success-wrap {
  padding: 96px 0;
  background-color: #E8E9F3;
}

.request-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:16px;

  background-color: white;
  color: #30323D;
  border-radius: 16px;
  padding: 24px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.request-success-icon {
  color: #58BC82;
  width: 96px;
  height: 96px;
}

.request-success-message {
  color: #58BC82;
  font-weight: 600;
  font-size: 1.5rem;
}


/* ------------template----------------- */
.template {
  background-color: #fff;
  /* background-image: url("pattern_1.svg"); */
  background-repeat: no-repeat;
  background-position: bottom right;
}

.template-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  min-height: 70vh;
  margin: 2rem auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.template-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.template-subheader p {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 1rem;

}

.template h1{
  text-align: center;
  font-size: 3.5vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.template h2{
  text-align: center;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  line-height: 3.25rem;
  color: #30323D;
}

.template h3{
  padding: 1rem;
  font-size: 2.5vw;
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.template h4{
  padding: 1rem;
  font-size: 2.5vw;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.template-text {
  text-align: left;
  font-size: 2.5vh;
  font-style: normal;
  max-width: 45rem;
  color: #30323D;
  padding: 3rem;
}

.template-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0rem;
}

.template-buttons p{
  padding: 1rem 0rem;
  font-size: 16px;
  display: flex;
  color: #30323D;
  text-align: center;
}

.template-buttons span{
  margin-left: 6px;
  display: flex;
  text-decoration: underline;
  font-weight: 600;
}

.section-template {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 2rem 0rem;
  justify-content: space-evenly;
  padding-top: 0;
}

.template-benefits {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  min-width: 32vw;
  color: #30323D;
  padding-right: 2vw;
}

.template-benefit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(48, 50, 61, 0.25);
}

.template-benefit p {
  display: flex;
  font-size: 1vw;
  padding-left: 1vh;
  flex-direction: column;
  padding-bottom: 1rem;
  justify-content: space-between;
}

.template-benefit ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.template-benefit li {
  margin: 10px;
  color: #58BC82;
  font-weight: 700;
}

.template-benefit a:hover {
  color: #30323D;
  text-decoration: none;
  cursor: pointer;
}

.template-benefit-header > p{
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 700;
  padding: 1rem 0rem;
  font-size: 1.1vw;
}

.template-benefit-accordion-content {
  font-size: 1vw;
  font-weight: 400;
  padding-left: 1rem;
  padding-bottom: 1rem;
}

.template-image {
  border-radius: 0.625rem;
  background: #FFF;
  max-width: 40vw;
  display: flex;
  align-self: center;
  justify-self: center;
  box-shadow: 8px 16px 32px 0px rgba(65, 101, 141, 0.25);
  cursor: pointer;
}

.installed-image {
  border-radius: 0.625rem;
  background: #FFF;
  display: flex;
  align-self: center;
  justify-self: center;
  box-shadow: 8px 16px 32px 0px rgba(65, 101, 141, 0.25);
  cursor: pointer;
}

.section_install {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 75vh;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.install-header {
  margin-bottom: 20px;
}

.install-header h1 {
  text-align: center;
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  margin-top: 1rem;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.install-header h2 {
  text-align: center;
  font-size: 2vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  background-image: linear-gradient(90deg,#58A3C8, #58BC82);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
  
/* Image Container */
.install-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.install-image img {
  max-width: 100%;
  height: auto;
}

.installed-image {
  height: 20vw;
}

.about {
  /* Adjust the max-width as needed */
  min-height: 75vh;
  justify-content: space-evenly;
  }
  

.about-container {
  position: relative;
  z-index: 2;
  max-width: 80vw;
  margin: 2rem auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.about-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-about .about-header h1{
  text-align: center;
  font-size: 3vw;
  font-style: normal;
  font-weight: 700;
  margin-top: 2rem;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.section-about .about-header h2{
  text-align: center;
  font-size: 2vw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05rem;
  background-image: linear-gradient(90deg,#58A3C8, #58BC82);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about h3{
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #30323D;
}

.about-text {
  text-align: left;
  font-size: 1.5vw;
  font-style: normal;
  max-height: 40hv;
  color: #30323D;
  padding: 3rem;
}


.logo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Vertically center logos */
  justify-content: space-around; /* Distribute logos evenly */
  width: 80%; /* Adjust width as needed */
  margin: 2.25rem auto; /* Center the container */
  overflow-y: auto; /* Enable vertical scrolling */
}

.logo-container img {
  width: 100px; /* Set a consistent width for logos */
  height: 100px; /* Set a consistent height for logos */
  margin: 15px; /* Add spacing between logos */
  cursor: pointer; /* Make logos clickable */
}

.logo-container img:hover {
  opacity: 0.8; /* Add a subtle hover effect */
}


.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  margin-right: 2rem;
}

.overflow-hidden {
  overflow: hidden;
}

.animate-marquee {
  animation: marquee 50s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.w-20 {
  width: 8rem;
}

.h-20 {
  height: 8rem;
}

.bg-white {
  background-color: #ffffff;
}

.p-2 {
  padding: 1rem;
}

.client-logo {
  height: 6rem;
  width: 6rem;
  transition: ease-in-out;
}



/* Responsive design */
@media (max-width: 768px) {
  .legal-message {
    font-size: 2rem;
  }

  .section-legal {
    padding: 1rem 0;
  }
  
  .legal {
    padding: 0 1rem;
  }
  
  .legal-container {
    max-width: 90vw;
    border-radius: 12px;
  }
  
  .legal-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .legal-text {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .markdown-body {
    font-size: 0.95rem;
  }
  
  .markdown-body h1 {
    font-size: 1.75rem;
  }
  
  .markdown-body h2 {
    border-bottom: 0;
    margin-left: 30px;
    font-size: 1.375rem;
  }

  .markdown-body h3 {
    border-bottom: 0;
    margin-left: 10px;
    font-size: 1.075rem;
  }

  .markdown-body .anchor {
    padding-right: 6px; /* Increase padding for better visibility */
    visibility: visible;
  }

  .markdown-body h1 .anchor{
    visibility: hidden;
  }

  .markdown-body h1 .octicon-link,
  .markdown-body h2 .octicon-link,
  .markdown-body h3 .octicon-link,
  .markdown-body h4 .octicon-link,
  .markdown-body h5 .octicon-link,
  .markdown-body h6 .octicon-link {
    width: 16px; /* Ensure adequate size on mobile */
    height: 16px;
  }
  
  .markdown-body table {
    font-size: 0.875rem;
  }

  .markdown-body li {
    font-size: 0.875rem;
  }
  
  .markdown-body th,
  .markdown-body td {
    padding: 0.5rem 0.75rem;
  }
}

/* Print styles */
@media print {
  .section-legal {
    background: white;
    padding: 0;
  }
  
  .legal-container {
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
  
  .legal-header {
    background: white;
    color: #1a202c;
    border-bottom: 2px solid #e2e8f0;
  }
  
  .legal-header::after {
    display: none;
  }
  
  .markdown-body a {
    color: #1a202c;
    text-decoration: underline;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Loading animation for when content is being fetched */
.legal-container.loading {
  opacity: 0.7;
}

.legal-container.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #58BC82;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


  .markdown-body svg.octicon {
    fill: currentColor;
  }
  
  .markdown-body .anchor>.octicon {
    display: inline;
  }


  .pdf-viewer {
    width: 100%;
    height: 87vh;
    overflow: hidden;
    position: relative;
    background: #000;
  }

  .slides-container {
    display: flex;
    height: 100%;
  }

  .slide {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .slide-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .slide-content.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slide-content.clickable:hover {
    transform: scale(1.02);
  }

  .slide-content.clickable:hover .slide-image {
    filter: brightness(1.1);
  }

  .slide-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: white;
  }

  .click-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.8));
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
  }

  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.288), rgba(14, 13, 13, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.93);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .nav-btn:hover {
    background: linear-gradient(135deg, rgba(36, 35, 35, 0.2), rgba(46, 45, 45, 0.1));
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }

  .nav-btn:active {
    transform: translateY(-50%) scale(0.98);
  }

  .nav-btn.prev {
    left: 24px;
  }

  .nav-btn.next {
    right: 24px;
  }

  .slide-counter {
    position: absolute;
    top: 1px;
    right: 18%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 12px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
  }

@media (max-width: 860px) {

  .slide-image {
    max-height: 80vh;
  }

  .h1 {
    font-size: 2.75rem;
    line-height: 2.75rem;
    padding-top: 2rem;
  }

  .template {
    
  }
  
  .template h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 2.25rem;
    padding-top: 3rem;
  }

  .template h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 2.25rem;
    padding: 1rem;
  }

  .template h4{
    padding: 1rem;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.05rem;
    color: #30323D;
  }  

  .template-container {
    margin: 1rem auto;
    flex-direction: column;
  }

  .template-header {
    max-height: 18rem;
  }

  .section-template {
    flex-direction: column-reverse;
  }

  .template-benefits {
    padding: 0.5rem;
    padding-top: 1rem;
    min-width: 100%;
  }

  .template-image {
    justify-self: flex;
    min-width: 80vw;
  }

  .installed-image {
    justify-self: flex;
    min-width: 80vw;
  }

  .section_install {
    display: flex;
    flex-direction: column;
  }
  
  .install-header {
    margin-bottom: 1rem;
  }
  
  .install-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  .install-header h2 {
    font-size: 1.5rem;
    margin-top: 10px;
  }
    
  /* Image Container */
  .install-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }
  
  .install-image img {
    max-width: 100%;
    height: auto;
  }

  .template-buttons {
    align-items: center;
    display: none;
    visibility: hidden;
    padding: 0rem;
  }

  .template-buttons p {
    justify-content: center;
  }

  .template-benefit p {
    font-size: 1.125rem;
  }

  .template-benefit {
  }

  .about-container {
    margin: 1rem auto;
    flex-direction: column;
    height: 100%;
  }

  .about-header {
    display: unset;
    max-height: 18rem;
  }

  .about h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 2.25rem;
    padding-top: 3rem;
  }

  .about h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 2.25rem;
    padding: 1rem;
  }


  .about-text {
    text-align: left;
    font-size: 2.5vh;
    margin: 2rem 0rem;
    padding: 0rem;
  }

  .solution-section,
  .solution-section-reverse {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .solution-image-container img {
    max-width: 100%;
  }
  
  .solution h1 {
    font-size: 2rem;
  }
  
  .solution h2 {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  
  .solution h3 {
    font-size: 1.25rem;
  }
  
  .see-solution-link {
    display: none;
  }

  .solution-container {
    padding: 1rem;
  }
  
  .solution-cta {
    padding: 2rem 1rem;
  }

  .legal-text {
    text-align: left;
    font-size: 2.5vh;
    font-style: normal;
    max-height: 40hv;
    color: #30323D;
    margin: 2rem 0rem;
    padding: 0rem;
  }
  
}

.md h1 {
    text-align: left;
    font-size: 2.5vh;
    font-style: normal;
    max-height: 40hv;
    color: #30323D;
    margin: 2rem 0rem;
    padding: 0rem;
  }
  