.hero {
  flex-wrap: wrap-reverse;
  padding: 0 50px;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
}

.hero .text {
  align-items: flex-start;
  width: 560px;
  gap: 30px;
}

.hero img {
  width: 100%;
  max-width: 640px;
  min-width: 400px;
  z-index: -1;
  padding: 50px 0;
}

.hero .btn-container {
  gap: 20px;
}

.categories {
  padding: 0 50px;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
  gap: 20px;
}

.categories .card-holder {
  flex-wrap: wrap;
}

.categories img {
  width: 400px;
}

.phrase {
  padding: 50px;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
}

.phrase .wrapper {
  width: 560px;
  text-align: center;
  gap: 40px;
}

.phrase .line {
  width: 300px;
  height: 1px;
  background: #000;
}

.bullet-container {
  padding: 0 50px;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
  gap: 120px;
}

.bullet-container .bullet:nth-child(1) {
  flex-wrap: wrap-reverse;
}
.bullet-container .bullet:nth-child(2) {
  flex-wrap: wrap;
}

.bullet-container .text {
  align-items: flex-start;
  width: 560px;
  gap: 30px;
}

.bullet-container img {
  width: 100%;
  max-width: 440px;
  min-width: 400px;
  z-index: -1;
  padding: 0 100px;
}

.bullet-container .text {
  align-items: flex-start;
  width: 560px;
  gap: 30px;
}

.cta {
  padding: 0 50px;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
}

.cta .text{
  align-items: center;
  gap: 30px;
}
.cta .text p{
  text-align: center;
  width: 560px;
}

/* Responsive overrides only. Desktop remains exactly as defined above. */
@media (max-width: 1024px){
  .hero,
  .categories,
  .phrase,
  .bullet-container,
  .cta{
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero{
    gap: 30px;
  }

  .hero .text,
  .bullet-container .text{
    width: min(560px, 100%);
  }

  .hero img{
    min-width: 0;
    width: min(560px, 100%);
    padding: 20px 0;
  }

  .categories .card-holder{
    width: 100%;
    gap: 28px;
  }

  .categories .card{
    width: min(300px, 100%);
  }

  .categories img{
    width: 100%;
  }

  .bullet-container{
    gap: 90px;
  }

  .bullet-container .bullet{
    width: 100%;
    gap: 30px;
  }

  .bullet-container img{
    min-width: 0;
    width: min(440px, 100%);
    padding: 0;
  }

  .cta .text p{
    width: min(560px, 100%);
  }
}

@media (max-width: 700px){
  h1{
    font-size: 42px;
    line-height: 1.15;
    text-align: center;
  }

  p.home{
    font-size: 17px;
    line-height: 1.6;
  }

  p.quote{
    font-size: 20px;
    line-height: 1.5;
  }

  button.primary,
  button.secondary{
    width: 100%;
    max-width: 280px;
    height: 52px;
    font-size: 19px;
    line-height: 24px;
  }

  .hero,
  .categories,
  .phrase,
  .bullet-container,
  .cta{
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero{
    flex-direction: column-reverse;
    gap: 24px;
    padding-top: 40px;
  }

  .hero .text,
  .bullet-container .text{
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero img{
    width: 100%;
    max-width: 420px;
    padding: 0;
  }

  .hero .btn-container,
  .bullet-container .btn-container,
  .cta .btn-container{
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .categories{
    gap: 18px;
  }

  .categories .card-holder{
    flex-direction: column;
    gap: 24px;
  }

  .categories .card{
    width: min(330px, 100%);
  }

  .phrase{
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .phrase .wrapper{
    width: 100%;
    gap: 24px;
  }

  .phrase .line{
    width: min(220px, 70%);
  }

  .bullet-container{
    gap: 70px;
  }

  .bullet-container .bullet,
  .bullet-container .bullet:nth-child(1),
  .bullet-container .bullet:nth-child(2){
    gap: 24px;
  }

  .bullet-container img{
    width: 100%;
    max-width: 360px;
  }

  .cta .text{
    width: 100%;
    gap: 20px;
  }

  .cta .text p{
    width: 100%;
  }
}
