* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green-highlight: #14F100;
  --primary-background: #012440;
  --secondary-background: #021723; 
  --primary-icon: #2DD4BF;
  --secondary-icon: #4FD1C5;
  --accord-icon: #0A8878;
  --navbar-bg: #082840;

  --text-thin: 100;
  --text-medium: 500;
  --text-semibold: 600;
  --text-bold: 700;


}


.hp-logo {
  height: 50px;
  width: 50px;
}
.hero {
  min-height: 80vh;
  background-color: var(--primary-background);

  background-image:
    linear-gradient(rgba(255,255,255,0.05) 0.5px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size: 50px 60px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 60px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: var(--navbar-bg);
  position: fixed;
  border: 1px solid #8F8F8F;
  border-radius: 10px;
  top: 30px;
  z-index: 10;
} 

.navbar-list {
  display: flex;
  gap: 42px;
}

.navbar-list li {
  list-style-type: none;
}

.navbar-list li a {
  
  text-decoration: none;
  color: white;
  font-size: 12px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #2DD4BF;
  transition: width 0.3s ease;
}

.navbar-list li a:hover {
  color: #2DD4BF;
}

.navbar-list li a:hover::after {
  width: 100%;
}

.footer-links a {
  transition: color 0.3s ease;
}


.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #2DD4BF;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #2DD4BF;
}

.footer-links a:hover::after {
  width: 100%;
}

.navbar button {
  position: relative;
  width: 96px;
  height: 41px;
  background-color: #2DD4BF;
  color: #012440;
  font-weight: bolder;
  font-size: 15px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.navbar button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.8),
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.8)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* White box effect */
.navbar button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.navbar button:hover::after {
  left: 130%;
}

.navbar button:hover {
  box-shadow:
    0 0 15px rgba(255,255,255,0.25),
    0 0 30px rgba(45,212,191,0.25);
}

.burger-icon {
  font-size: 24px;
  display: none;
  cursor: pointer;
}

.hero-sub {
  height: 100%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title-container {
  width: 656px;
}

.hero-sub-title {
  font-size: 45px;
  font-weight: bold;
  text-align: center;
}

.hero-sub-container {
  width: 909px;
  margin-top: 5px;
}

.hero-sub-subtitle {
  text-align: center;
  font-size: 25px;
  font-weight: 300;
}

.get-started-btn {
  margin-top: 5px;
  width: 214px;
  height: 54px;
  background: linear-gradient(135deg, #2DD4BF, #60A5FA);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 20px;
}

.get-started-btn:hover {
  background-color: #26B8A7;
  transform: translateY(-2px);
}


/* second section */

.second-section {
  background-color: var(--primary-background);
  display: flex;
  justify-content: center;
  gap: 156px;
  padding: 110px 0;
}

.second-section-left {

  width: 345px;
  color: white;
}

.second-section-left p {
  font-weight: var(--text-semibold);
  font-size: 35px;
}

.second-section-right {

  width: 696px;
  color: white;
}

.second-section-right p {
  font-size: 25px;
  text-align: justify;
}

/* third section */

.third-section {
  background-color: var(--secondary-background);
  padding: 110px 0;
}

.section-title-container {
  display: flex;
  justify-content: center;
}

.expand {
  width: 980px;
}

.third-main-title {
  font-size: 35px;
  font-weight: var(--text-semibold);
  color: white;
}

.third-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}


.third-grid {
  display: grid;
  grid-template-columns: 387px 387px 387px;
  grid-template-rows: auto auto;
  gap: 16px;
  
}

.third-grid > div {
  padding: 20px 10px;
  border-radius: 8px;

  /* Clean dark background matching your image tint */
  background: rgba(6, 15, 23, 0.25);
  
  /* Glass blur effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid #5E5C5C;
  /* BANAYAD NA INNER TRACE (Bottom & Right Only) */
 box-shadow: 
    /* 1. The Glass Core Edge: Dark crisp baseline for physical panel structure */
    inset -1px -1px 0px rgba(0, 0, 0, 0.25),

    /* 2. Very Light White Trace: Dropped to a subtle 6% for a faint, realistic sheen */
    inset -3px -3px 2px rgba(255, 255, 255, 0.06),
    
    /* 3. Very Light White Glow: Dropped to 3% for a feather-light ambient reflection */
    inset -6px -6px 8px rgba(255, 255, 255, 0.03);
}


.third-title {
  color: white;
  font-weight: 500;
  font-size: 15px;
}

.third-sub {
  font-weight: var(--text-thin);
  font-size: 18px;
  margin-top: 6px;
  color: white;
}


/* fourth section */


.fourth-section {
  padding: 110px 0;
  background-color: var(--primary-background);
}

.fourth-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.features-icon {
  width: 80px;
  height: 80px;
}

.fourth-grid {
  display: grid;
  grid-template-columns:  586px 586px;
  grid-template-rows: 338px 338px;
  gap: 20px;
}

.fourth-grid > div {
  text-align: center;
  padding: 60px 91px;
  border-radius: 16px;
  border: 1px solid #5E5C5C;

  /* Ang base background color mo (012440 at 20%) */
  background: rgba(1, 36, 64, 0.2);
  
  /* Glass blur effect */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);


  /* BANAYAD NA INNER TRACE (Bottom & Right Only) */
  box-shadow: 
    /* 1. Ang pinong Trace: Pumasok ng 3px pero sobrang aninag lang (7% opacity) */
    inset -3px -3px 3px rgba(255, 255, 255, 0.07),
    
    /* 2. Ang pinong Glow: Malambot na usok ng puti para may transition (4% opacity) */
    inset -6px -6px 10px rgba(255, 255, 255, 0.04);
}

.fourth-title {
  color: white;
  font-size: 35px;
  font-weight: var(--text-semibold);
  margin-top: 8px;
}

.fourth-sub {
  margin-top: 10px;
  font-size: 25px;
  font-weight: var(--text-thin);
  color: white;
}


/* fifth section */

.fifth-section {
  background-color: var(--secondary-background);
  padding: 110px 0;
}

.fifth-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fifth-first-row {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.fifth-left {
  width: 507px;
  text-align: justify;
  color: white;
}

.fifth-left-title {
  font-weight: var(--text-semibold);
  font-size: 35px;
}

.fifth-left-sub {
  margin-top: 10px;
  font-size: 25px;
}

.fifth-left-text {
  font-size: 18px;
  margin-top: 15px;
  font-weight: var(--text-thin);
}


.fifth-right {
  width: 651px;
  height: auto;
  padding: 10px 20px;


   /* Clean dark background matching your image tint */
  background: rgba(6, 15, 23, 0.25);
  
  /* Glass blur effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid #012440;
  /* BANAYAD NA INNER TRACE (Bottom & Right Only) */
 box-shadow: 
    /* 1. The Glass Core Edge: Dark crisp baseline for physical panel structure */
    inset -1px -1px 0px rgba(0, 0, 0, 0.25),

    /* 2. Very Light White Trace: Dropped to a subtle 6% for a faint, realistic sheen */
    inset -3px -3px 2px rgba(255, 255, 255, 0.06),
    
    /* 3. Very Light White Glow: Dropped to 3% for a feather-light ambient reflection */
      inset -6px -6px 8px rgba(255, 255, 255, 0.03);

      border-radius: 16px;
}

.feature-list li p {
  color: white;
  font-size: 20px;
  
}

.feature-list li p:first-child {
  font-weight: bold;
}

.feature-list li p:last-child {
  color: rgb(107, 107, 107);
}

.feature-list li p:first-child {
  margin-bottom: 25px;
}

.feature-list-margin {
  margin-top: 40px;
}

.feature-list li::marker {
    color: white;
}

.fifth-second-row {
  margin-top: 20px;
  width: 1204px;
  height: 340px;
  padding: 46px 57px;


  /* Clean dark background matching your image tint */
  background: rgba(6, 15, 23, 0.25);
  
  /* Glass blur effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid #012440;
  /* BANAYAD NA INNER TRACE (Bottom & Right Only) */
 box-shadow: 
    /* 1. The Glass Core Edge: Dark crisp baseline for physical panel structure */
    inset -1px -1px 0px rgba(0, 0, 0, 0.25),

    /* 2. Very Light White Trace: Dropped to a subtle 6% for a faint, realistic sheen */
    inset -3px -3px 2px rgba(255, 255, 255, 0.06),
    
    /* 3. Very Light White Glow: Dropped to 3% for a feather-light ambient reflection */
      inset -6px -6px 8px rgba(255, 255, 255, 0.03);

      border-radius: 16px;
}

.fifth-second-visual-container {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
}

.fifth-second-visual-container div {
  text-align: center;
}

.fifth-second-visual-container div p {
  color: white;
  font-size: 20px;
}

.fifth-second-row-icon {
  height: 50px;
  width: 50px;
}

.fifth-second-row-title {
  font-size: 35px;
  color: white;
  text-align: center;
  font-weight: var(--text-semibold);
}

.fifth-second-row-sub {
  font-size: 20px;
  color: lightgray;
  text-align: center;
  margin-top: 16px;
  font-weight: var(--text-thin);
}


/* faq section */

.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--primary-background);
  padding: 110px 0;
}

.faq-section img {
  height: 60px;
  width: 60px;
}

.faq-section-heading {
  color: white;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 25px;
}


details {
  width: 682px;
  height: auto;
  background-color: #0C2336;
  border: 1px solid #5E5C5C;
  padding: 11px;
  color: white;
  margin-bottom: 10px;
  border-radius: 16px;
}

details summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

details summary button {
  width: 30px;
  height: 30px;
  background-color: #0A8878;
  border: none;
  border-radius: 8px;
}

details summary button i {
  font-size: 24px;
  font-weight: 800;
}
details summary span {
  font-size: 18px;
}

details p {
  font-weight: var(--text-thin);
  margin-top: 10px;
}
/* cta section */

.cta-section {
  background-color: var(--primary-background);
  text-align: center;
  color: white;
  padding: 110px 0;
}

.cta-section p:first-child {
  font-size: 45px;
  font-weight: var(--text-bold);
  margin-bottom: 20px;
}

.cta-section p:nth-last-child(2){
  font-size: 25px;
  margin-bottom: 35px;
}

/* footer */

.footer {
  display: flex;
  justify-content: center;
  background-color: var(--secondary-background);
}

.footer-flex {
  width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px;
  color: white;
}

.footer-icon {
  width: 40px;
  height: 40px;
}

.footer-right-flex {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  align-items: center;
}

.footer-right-flex button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.footer-links a {
  text-decoration: none;
  color: #8F8F8F;
}

.footer a:first-child {
  margin-right: 10px;
}




/* PA RESPO DIRI */
/* navbar plus hero section */


/* .footer{
  display: none;
} */

@media (max-width: 1220px) {
  .navbar {
    width: 94vw;
    padding: 5px 10px;
  }

  .burger-icon {
    display: block;
  }

  .navbar button , .navbar-list{
    display: none;
  }
}

@media (max-width: 950px) {
  .hero-sub-title {
    font-size: 35px;
  }

  .cta-section p:first-child {
    font-size: 35px;
  }

  .hero-sub-container {
    margin-top: 15px;
    width: 650px;
  }

  .get-started-btn {
    margin-top: 15px;
  }
}

@media (max-width: 660px) {
  .hero-title-container , .hero-sub-container{
    width: 94vw;
  }
}

@media (max-width: 550px) {
  .hero-sub-subtitle , .second-section-right p , .cta-section p:nth-last-child(2){
    font-size: 20px;
  }

  .cta-section p:nth-last-child(2){
    margin-bottom: 10px;
  }
}

/* second section */


@media (max-width: 1220px) {
  .second-section {
    padding-left: 13px;
    padding-right: 13px;
  }
}

@media (max-width: 1050px) {
  .second-section {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .second-section-left {
    text-align: center;
  }

  .second-section-right {
    width: 94vw;
  }
}


/* third section */

@media (max-width: 1220px) {
  .expand {
    display: none;
  }

  .section-title-container {
    justify-content: start;
    padding: 13px;
  }

  .third-grid {
    grid-template-columns: 46vw 46vw;
    grid-template-rows: 1fr 1fr 1fr;
  }
}

@media (max-width: 1050px) {
  .section-title-container {
    justify-content: center;
  }
}

@media (max-width: 660px) {
  .third-grid {
    grid-template-columns: 94vw;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

/* fourth section */ 

@media (max-width: 1220px) {
  .fourth-grid {
    grid-template-columns: 46vw 46vw;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .fourth-grid > div {
    padding: 40px 30px;
  }

  .features-icon {
    width: 60px;
    height: 60px;
  }

  .fourth-sub {
    font-size: 20px;
  }

  .fourth-title {
    font-size: 25px;
  }


}

@media (max-width: 660px) {
  .fourth-grid {
    grid-template-columns: 94vw;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}

/* fifth section */

@media (max-width: 1220px) {

  .fifth-first-row {
    gap: 10px;
  }

  .fifth-left {
    width: 46vw;
  }
  .fifth-right {
    width: 51vw;
  }

  .fifth-second-row {
    width: 94vw;
  }
}

@media (max-width: 850px) {
  .fifth-first-row {
    flex-direction: column;
    gap: 15px;
  }

  .fifth-left {
    width: 94vw;
    text-align: center;
  }
  .fifth-right {
    width: 94vw;
    padding-right: 20px;
    padding-top: 20px;
    padding-left: 20px;
  }

  .fifth-second-row {
    padding: 20px 20px;
    height: auto;
  }

  .fifth-second-visual-container div p {
    font-size: 16px;

  }
    .fifth-second-visual-container {
      margin-top: 40px;
    }

    .fifth-second-visual-container{
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: 1fr 1fr;
      gap: 15px;
    }

    .fifth-second-visual-container div:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .fifth-second-visual-container div:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .fifth-second-visual-container div:nth-child(3) {
        grid-column: 5 / span 2;
    }

    .fifth-second-visual-container div:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .fifth-second-visual-container div:nth-child(5) {
        grid-column: 4 / span 2;
    }


    .fifth-second-row-sub {
      font-size: 16px;
    }

    .fifth-second-row-title {
      font-size: 30px;
    }
}


@media (max-width: 550px) {
  .fifth-second-visual-container div p {
    font-size: 14px;
  }
}

/* faq section */

@media (max-width: 740px) {
  details {
    width: 94vw;
  }
}

/* footer */ 

@media (max-width:750px) {
  .footer-flex {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .footer-right-flex {
    flex-direction: column;
  }
}



/* modal */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(1, 36, 64, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 120;

  display: none;
  justify-content: flex-end;
  gap: 10px;
}

.modal-content {
  width: 250px;
  height: 100vh;
  background-color: var(--navbar-bg);
  border-left: 2px solid #5E5C5C;
  text-align: center;
  padding-top: 30px;
  color: white;
}

.modal-close {
  height: 40px;
  width: 40px;
  margin-top: 5px;
  cursor: pointer;
  border-radius: 8px;
  background-color: var(--secondary-background);
  border: none;
  color: white;
}

.modal-logo {
  height: 50px;
  width: 50px;
}

.modal-title {
  font-size: 20px;
  font-weight: var(--text-bold);
}

.modal-nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}

.modal-nav-container a {
  font-size: 12px;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid #021723;
}

.modal-nav-container a:first-child {
  border-top: 1px solid #021723;
}


.modal-nav-container a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #2DD4BF;
  transition: width 0.3s ease;
}

.modal-nav-container a:hover {
  color: #2DD4BF;
}

.modal-nav-container a:hover::after {
  width: 100%;
}

.modal-nav-container button {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  position: relative;
  background-color: #2DD4BF;
  color: #012440;
  font-weight: bolder;
  font-size: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 16px;

}

.modal-nav-container button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.8),
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.8)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* White box effect */
.modal-nav-container button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.modal-nav-container button:hover::after {
  left: 130%;
}

.modal-nav-container button:hover {
  box-shadow:
    0 0 15px rgba(255,255,255,0.25),
    0 0 30px rgba(45,212,191,0.25);
}

.modal-footer {
  margin-top: 220px;
  font-size: 12px;
}