* {
      box-sizing: border-box;
    }
    
@font-face {
  font-family: 'BricolageGrotesqueCondensed';
  src: url('/fonts/BricolageGrotesque_24pt_Condensed-Regular.woff2') format('woff2'),
       url('/fonts/BricolageGrotesque_24pt_Condensed-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

    body {
      margin: 0;
      padding: 0;
      font-family: Inter, sans-serif;
      background-color: #21242B; /* fallback bg */
      color: #fff;
    }

    a {
        text-decoration: none;
    }

    .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: url('bg.png') no-repeat center center;
  background-size: cover;
  position: relative;
}

header {
      display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* max-width: 1000px; */
    padding: 0 100px;
    height: 80px;
    position: relative;
    background: transparent;
    border-bottom: 2px solid #FF5C16;
    z-index: 10;
}

.hero-content {
  max-width: 1000px;
  margin: 150px 0 1px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-family: "BricolageGrotesqueCondensed" , "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 75px;
  line-height: 90%;
      max-width: 800px;
  text-transform: uppercase;
  color: #ECEFF3;
  margin: 30px 0;
  max-width: 100%;
}

.hero-image {
        margin-bottom: 30px;
  margin-top: 60px;
  width: 100%;
  max-width: 900px;
  opacity: 1; /* Keep fully visible */
  
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 68%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 68%);
}

    header img {
      height: 30px;
    }

    .header-buttons {
      display: flex;
      gap: 15px;
    }

    button {
        font-family: Inter;
        font-weight: 500;
        font-size: 14px;
        line-height: 90%;
        letter-spacing: 0px;
    }

    .header-buttons button {
  padding: 12px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.header-buttons button:first-child {
  background-color: #5FD5FB;
  color: #000;
  border: 1px solid #5FD5FB;
}

.header-buttons button:last-child {
  background-color: #fff;
  color: #000;
  border: 1px solid #CAD1D7;
}

    .line {
      font-weight: 300;
      font-size: 18px;
      line-height: 25px;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
      max-width: 650px;
    }

    .get-started-btn {
      margin-top: 30px;
      padding: 15px 25px;
      font-size: 16px;
      font-weight: 600;
      background-color: #5FD5FB;
      color: #111928;
      border: none;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .get-started-btn:hover {
      background-color: #aae3f6;
    }


    .section {
        justify-items: center;
      padding: 80px 40px;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.05);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .white-section {
  background-color: #fff;
  color: #111928;
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0 60px;
}

.section-grid {
      display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 0.6fr 1fr;
}

.section-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-image img {
  max-width: 100%;
  height: auto;
}

.section-text {
  flex: 1;
  text-align: left;
}

.question {
        font-family: Inter;
font-weight: 600;
font-size: 30px;
line-height: 150%;
letter-spacing: 0px;
  color: #5D6C7D;
  margin-bottom: 30px;

}

.section-title {
color: #21242B;
        font-weight: 700;
font-size: 75px;
line-height: 90%;

text-transform: uppercase;
     margin: 20px 0 50px;
  font-family: "BricolageGrotesqueCondensed" , "Bricolage Grotesque", sans-serif;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.tick-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  
}

.list-text {
  max-width: 600px; /* optional, to limit width */
}

.item-title {
        font-family: Inter;
font-weight: 700;
font-size: 16px;
line-height: 150%;
letter-spacing: 0px;
  margin: 0;
      margin-bottom: 3px;
  color: #111928;
}

.item-desc {
        font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 150%;
letter-spacing: 0px;
  margin: 0;
  color: #21242B;
  line-height: 1.4;
}


.section-btn {
      background-color: #21242B;
    color: white;
    margin-top: 30px;
      padding: 15px 25px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: background 0.3s;
}

.section-btn:hover {
  background-color: #aae3f6;
}

.section3-texts {
  text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    justify-items: center;
}

.section-label {
  color: #FF5C16;
  font-family: Inter;
font-weight: 600;
font-size: 30px;
line-height: 150%;
text-align: center;
  letter-spacing: 0.5px;
  margin: 20px 0 10px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-box {
  background-color: #fff;
  border-top: 2px solid #FF5C16;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  text-align: center;
}

.benefit-box img {
  height: 120px;
  margin-bottom: 20px;
}

.benefit-box h3 {
        font-family: Inter;
font-weight: 600;
font-size: 24px;
line-height: 150%;
letter-spacing: 0px;
text-align: center;
  margin-bottom: 12px;
  color: #072B31;
}

.benefit-box p {
        font-family: Inter;
font-weight: 600;
font-size: 16px;
line-height: 150%;
letter-spacing: 0px;
text-align: center;
  margin-bottom: 15px;
  color: #072B31;
}

.benefit-box small {
        font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 150%;
letter-spacing: 0px;
text-align: center;
color: #072B31;
}

.footer {
  background: url('footer.png') no-repeat center center;
  background-size: cover;
  padding: 60px 150px;
  color: white;
  border-top: 2px solid #FF5C16;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-logo {
  height: 30px;
  margin-bottom: 20px;
}

.footer-desc {
        font-family: Inter;
font-weight: 400;
font-size: 18px;
line-height: 150%;
letter-spacing: 0px;
  color: #CAD1D7;
  max-width: 400px;
}

.newsletter-title {
  margin-bottom: 15px;
  font-family: Inter;
font-weight: 600;
font-size: 18px;
line-height: 90%;
letter-spacing: 0px;

}

.newsletter-input-wrapper {
  position: relative;
  max-width: 500px;
}

.newsletter-input {
        font-family: Inter;
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;
  width: 100%;
  padding: 25px 70px 25px 15px;
  border-radius: 4px;
  border: none;
  outline: none;
  background-color: white;
  color: #111928;
}

.newsletter-btn {
        font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: 0px;
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 10px;
    padding: 0 25px;
    background-color: #5FD5FB;
    border: none;
    color: black;
    border-radius: 4px;
    cursor: pointer;
}

.footer-divider {
  border: none;
    height: 2px;
    background-color: white;
    margin: 30px 0
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin-bottom: 30px;
  gap: 20px;
}
.footer-links-grid a:first-child {
  text-align: left;      
}
.footer-links-grid a:nth-child(2){
   text-align: left;     
}
.footer-links-grid a:last-child {
  text-align: right;      
}
.footer-links-grid a {
        font-family: Inter;
font-weight: 400;
font-size: 18px;
line-height: 30px;
letter-spacing: 0%;
  color: #ECEFF3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-grid a:hover {
  color: #5FD5FB;
}

.footer-bottom {
        font-family: Inter;
font-weight: 400;
font-size: 18px;
line-height: 30px;
letter-spacing: 0%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons img {
  width: 20px;
  margin-left: 12px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 1;
}
.social-icons {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
        header {
            display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 50px;
        text-align: left;
        padding: 0 20px;
}
header img {
    height: 25px;
}
.footer-logo img{
    height: 25px;    
}
.footer-desc {
     font-size: 16px; 
             letter-spacing: 0.4px;  
}
.newsletter-title {
     font-size: 16px;   
}
.newsletter-input {
     padding: 15px 70px 15px 15px;  
     font-size: 12px;
}
.newsletter-btn {
        padding: 0 5px;
        font-size: 11px;
}
.benefit-box h3 {
        font-size: 20px;
}
.benefit-box p {
        font-size: 14px;
}
.benefit-box small {
        font-size: 13px;
}
.header-buttons {
    gap: 10px;
    justify-self: right;
}
.hero-image {
    margin-top: 40px;
    padding: 0 15px;
}
.section-image img {
    height: 150px;
}
.section-content {
    padding: 10px 0;
}
.hero-content {
       margin: 50px 0 1px 0;
       padding: 0 10px;
    }
    .section {
            padding: 30px 20px;
    }
    .section-text {
    text-align: center;
    justify-items: center;
}
    .section-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
.question {
        font-size: 20px;
}
.section-title {
font-size: 40px;
}
.item-desc {
        font-size: 14px;
}
.section3-texts {
    margin-bottom: 30px;
}
.section-label {
font-size: 20px;        
}
.section-grid {
    grid-template-columns: 1fr;
}
.footer {
        padding: 40px;
}
.footer-logo {
    margin-bottom: 10px;
}
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links-grid a {
        font-size: 14px;
  }
  .footer-divider {
    height: 1.5px;
    margin: 20px 0;
}
.footer-links-grid a:nth-child(2) {
    text-align: right;
}
.footer-links-grid a:nth-child(3) {
    text-align: left;
}
  .newsletter-input-wrapper {
    margin: 0 auto;
  }
.benefit-box {
        padding: 20px 30px;
}
  .footer-links-grid {
    grid-template-columns: 2fr 2fr;
    gap: 10px;
        margin-bottom: 10px;
  }
.custom-list {
        padding: 0 10px;
}
.custom-list li {
    gap: 5px;
}
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 14px;
  }
  .social-icons img {
    margin: 12px;
    opacity: 0.9;
}
      .title {
        font-size: 40px;
      }

      .line {
        font-size: 16px;
        padding: 0 15px;
      }

      .get-started-btn {
        font-size: 14px;
        padding: 12px 20px;
      }
      .benefit-box img {
    height: 100px;
    margin-bottom: 0px;
}
      .header-buttons button {
        font-size: 12px;
        padding: 6px 12px;
      }
    }