.heroSection {
  position: relative;
  height: 100dvh;
  overflow: hidden;

  .heroImage {
    height: 100%;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.8);
    }
  }

  .heroContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fbfbfb;
    width: 100%;
    padding: 0 2rem;

    h2 {
      font-size: clamp(2rem, 1.5rem + 2.5vw, 4rem);
      line-height: 1.4;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

      .highlight {
        color: #70c5c7;
        display: inline-block;
        font-size: clamp(2.625rem, 2.25rem + 1.88vw, 4.5rem);
        text-shadow: 0 2px 4px #aac1c248;
      }
    }
  }
}

.sectionInner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 6rem 2rem;
}

.conceptSection {
  background-color: #70c5c7;
  color: #fbfbfb;
  text-align: center;

  p {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    line-height: 2;
  }
}

.productSection {
  .productContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    > span {
      display: inline-block;
      font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    }
  }

  .productImage {
    overflow: hidden;
    border-radius: 8px;

    img {
      transition: transform 0.3s;

      &:hover {
        transform: scale(1.05);
      }
    }
  }

  .productText {
    h3 {
      font-size: clamp(1.2rem, 1rem + 0.5vw, 1.8rem);
      margin-bottom: 1rem;
      color: #70c5c7;
    }

    p {
      font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.2rem);
      line-height: 1.8;
    }
  }
}

.productsSection {
  background-color: #f5f5f5;

  h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
  }

  .productsGrid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .productCard {
    background-color: #fbfbfb;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

    figure {
      height: 100%;
      overflow: hidden;
      border-radius: 8px;

      img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;

        &:hover {
          transform: scale(1.05);
        }
      }
    }

    .productContent {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;

      h3 {
        font-size: clamp(1.2rem, 1rem + 0.5vw, 1.8rem);
        color: #70c5c7;
        margin: 0;
      }

      .productDetails {
        display: grid;
        gap: 1.5rem;

        dt {
          font-weight: 700;
          color: #70c5c7;
          font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem);
          margin: 0;
        }

        dd {
          font-size: clamp(0.8rem, 0.7rem + 0.5vw, 1rem);
          line-height: 1.6;
          margin: 0;
        }
      }
    }
  }
}

.companySection {
  h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
  }

  .companyInfo {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;

    dl {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.2rem);
      line-height: 1.6;
    }

    dt {
      display: none;
    }

    dd {
      margin: 0;
    }
  }
}

.contactSection {
  background-color: #f5f5f5;

  h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
  }

  .contactText {
    text-align: center;
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.2rem);
    margin-bottom: 2rem;
  }

  .contactInfo {
    text-align: center;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.4rem);

    p {
      margin-bottom: 1rem;
    }
  }
}

.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(112, 197, 199, 0.98);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;

  &.active {
    opacity: 1;
  }

  .mobileMenuNav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    ul {
      text-align: center;

      li {
        margin-bottom: 2rem;

        a {
          color: #fbfbfb;
          font-size: clamp(1.2rem, 1rem + 1vw, 2rem);
          display: block;
          padding: 0.5rem;
        }
      }
    }
  }
}

.footer {
  background-color: #333;
  color: #fbfbfb;
  padding: 4rem 2rem 2rem;
  text-align: center;

  .footerInner {
    max-width: 1200px;
    margin-inline: auto;
  }

  .footerLogo {
    margin-bottom: 2rem;

    .logoText {
      font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem);
      font-weight: 700;
      line-height: 1.4;
    }
  }

  .footerNav {
    margin-bottom: 3rem;

    ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;

      a {
        font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem);
        transition: color 0.3s;

        &:hover {
          color: #70c5c7;
        }
      }
    }
  }

  .copyright {
    text-align: center;
    font-size: clamp(0.8rem, 0.7rem + 0.5vw, 1rem);
  }
}

@media (width < 768px) {
  .sectionInner {
    padding: 4rem 1rem;
  }

  .productSection {
    .productContent {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .productsSection {
    .productCard {
      grid-template-columns: 1fr;
      padding: 1rem;

      figure {
        height: auto;
      }
    }
  }

  .footer {
    padding: 3rem 1rem 1.5rem;

    .footerNav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
}
