/* ===== ABOUT ===== */
.abo {
  background: #fff;
  padding: 120px 0 160px;
  margin-top: 5%;
}

.abo__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 텍스트 */
.abo__head {
  max-width: 720px;
  margin-bottom: 60px;
}

.abo__title {
  font-size: 52px;
  font-weight: 700;
  color: #3db6c6;
  margin-bottom: 14px;
}

.abo__desc {
  font-size: 19px;
  line-height: 1.6;
  color: #666;
}

/* 카드 (절대 고정) */
.abo-card {
  position: relative;
  width: 1800px;
  height: 520px;
  overflow: hidden;
  border-radius: 40px;
  transform: none !important;
  will-change: auto;
  margin-left: auto;
  margin-right: -25%;
}

/* 이미지 래퍼 */
.abo-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* 이벤트 차단 */
}

/* 🔥 이미지: GPU 레이어로 분리 */
.abo-img img {
  display: block;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center 22%;

  transform: translate3d(0, 0, 0);
  /* ⬅️ GPU 분리 핵심 */
  will-change: transform;
}

/* 반응형 */
@media (max-width:1024px) {
  .abo-card {
    height: 360px;
    border-radius: 28px;
  }
}

@media (max-width:768px) {
  .abo {
    padding: 80px 0 120px;
  }

  .abo__inner {
    padding: 0 20px;
  }

  .abo__title {
    font-size: 32px;
  }

  .abo-card {
    height: 300px;
    border-radius: 22px;
  }
}

/* ===== MOBILE RESET (이미지 안 보이던 문제 해결) ===== */
@media (max-width: 768px) {

  .abo-card {
    width: 100%;
    /* PC 고정 폭 제거 */
    max-width: 100%;
    height: 260px;

    margin-left: 0;
    margin-right: 0;
    /* 음수 마진 제거 */

    border-radius: 18px;
  }

  /* 이미지 영역 중앙 정렬 */
  .abo-img {
    inset: 0;
    background-position: center center !important;
  }
}


.pro-badge {
  position: absolute;
  right: 11%;
  bottom: -19%;
  width: 609px;
}

.pro-badge img {
  width: 100%;
  display: block;
}

/* 태블릿 */
@media (max-width: 1024px) {
  .pro-badge {
    width: 240px;
    right: 30px;
    bottom: 25px;
    display: none;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .pro-badge {
    width: 180px;
    right: 20px;
    bottom: 20px;
  }
}





/***********2번째섹션***************************************************/



.haccp {
  width: 100%;
  padding: 120px 0;
  background: #fff;
}

.haccp__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
}

/* 제목 */
.haccp__title {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 70px;
}

.haccp__title strong {
  font-weight: 800;
}

/* 점 라인 */
.haccp__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #eee;
  padding-top: 0;
  margin-bottom: 90px;
}

.haccp__item {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

/* 점 기본 상태 */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bbb;
  display: inline-block;

  /* ✅ 줄 위로 올라가게 + scale 같이 적용 */
  position: relative;
  transform: translateY(-12px);

  /* ✅ 처음엔 회색 */
  opacity: 1;

  /* ✅ 그림자 (시안 느낌) */
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* 켜질 때 */
.haccp__item.on .dot {
  background: #3db6c6;

  /* ✅ 시안처럼 은은한 glow */
  box-shadow: 0 0 14px rgba(61, 182, 198, 0.45);

  transition: 0.6s ease;
}

/* 아래 설명 */
.haccp__desc {
  max-width: 950px;
}

.haccp__desc h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.haccp__desc h3 span {
  color: #3db6c6;
}

.haccp__desc p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* ======================
   반응형
====================== */

/* 태블릿 */
@media (max-width: 1024px) {
  .haccp__title {
    font-size: 40px;
  }

  .haccp__steps {
    gap: 40px;
  }

  .haccp__item {
    font-size: 16px;
  }

  .haccp__desc p {
    font-size: 16px;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .haccp__inner {
    padding: 0 20px;
  }

  .haccp {
    width: 100%;
    padding: 120px 0;
    background: #fff;
    margin-top: -48%;
  }

  .haccp__steps {
    flex-direction: column;
    gap: 30px;
    padding-top: 0px;
    margin-bottom: 60px;
  }

  .haccp__item {
    font-size: 15px;
  }

  .haccp__desc h3 {
    font-size: 22px;
  }

  .haccp__desc p {
    font-size: 15px;
  }
}

@media (max-width: 640px) {

  .haccp__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;

    /* ✅ 기존 가로줄 제거 */
    border-top: none;

    /* ✅ 세로줄 생성 */

    padding-left: 30px;
    margin-left: 10px;
  }

  /* 점 위치 모바일용 재배치 */
  .dot {
    transform: none !important;
    position: absolute;
    left: -16px;
    top: 0;
  }

  .haccp__item {
    position: relative;
    text-align: left;
    padding-left: 10px;
  }

}








/***********3번째섹션***************************************************/


.goodfood {
  width: 100%;
  padding: 140px 0;
  background: #fff;
}

.goodfood__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  gap: 90px;
}

/* 이미지 */
.goodfood__img {
  width: 420px;
  flex-shrink: 0;
}

.goodfood__img img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

/* 텍스트 */
.goodfood__text {
  flex: 1;
}

.goodfood__text h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 35px;
}

.goodfood__text h2 strong {
  font-weight: 800;
}

.goodfood__text p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* =====================
   반응형
===================== */

/* 태블릿 */
@media (max-width: 1024px) {
  .goodfood__inner {
    gap: 60px;
    padding: 0 50px;
  }

  .goodfood__img {
    width: 340px;
  }

  .goodfood__text h2 {
    font-size: 40px;
  }

  .goodfood__text p {
    font-size: 16px;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .goodfood {
    padding: 90px 0;
    margin-top: -40%;
  }

  .goodfood__inner {
    flex-direction: column;
    text-align: center;
    gap: 45px;
    padding: 0 20px;
  }

  .goodfood__img {
    width: 100%;
    max-width: 320px;
  }

  .goodfood__text h2 {
    font-size: 30px;
  }

  .goodfood__text p {
    font-size: 15px;
  }
}


/***********4번째섹션***************************************************/

.pro-banner {
  width: 100%;
  padding: 120px 0;
  background: #fff;
}

.pro-banner__inner {
  max-width: 1920px;
  margin: 0 auto;

  position: relative;
  overflow: hidden;
}

/* 이미지 */
.pro-banner__inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* 텍스트 중앙 */
.pro-banner__text {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 20px;
}

.pro-banner__text p {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}

.pro-banner__text strong {
  font-weight: 800;
}

/* ======================
   반응형
====================== */

/* 태블릿 */
@media (max-width: 1024px) {
  .pro-banner__inner img {
    height: 320px;
  }

  .pro-banner__text p {
    font-size: 28px;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .pro-banner {
    padding: 80px 0;
    margin-top: -20%;
  }



  .pro-banner__inner img {
    height: 240px;
  }

  .pro-banner__text p {
    font-size: 18px;
    line-height: 1.5;
  }
}