/* ==========================================
   모바일에서도 header, footer 표시 (비활성화 규칙 제거)
   ========================================== */

/* ==========================================
   1. Hero Section
   ========================================== */

.pg-hero {
  display: flex;
  height: 374px;
  margin: 0 auto;
  width: 1200px;
  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    padding: 50px 16px 0;
    align-items: center;
    justify-content: center;
  }
}

.pg-hero__container {
  position: relative;
  @media (max-width: 768px) {
    padding: 0;
    gap: 20px;
  }
}

.pg-hero__content {
  display: flex;
  width: 1200px;
  height: 335px;
  padding: 40px 100px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
  @media (max-width: 768px) {
    padding: 0;
    gap: 20px;
    height: auto;
    width: 100%;
    align-items: center;
  }
}

.pg-hero__eyebrow {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 22.88px;
  color: #09ae4f;
}

.pg-hero__eyebrow-mo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 8px 50px 8px 22px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: linear-gradient(
    95deg,
    #08d25d 5.72%,
    #03bdab 46.96%,
    #1dacff 88.2%
  );
  color: #fff;
  text-align: left;
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
  text-transform: lowercase;
}

.pg-hero__eyebrow-mo-content {
  display: flex;
  position: relative;
  align-items: center;
}

.pg-hero__eyebrow-mo-text {
  flex-shrink: 0;
}

.pg-hero__eyebrow-mo-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -43px;
  bottom: -7px;
}

.pg-hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  @media (max-width: 768px) {
    gap: 20px;
  }
}

.pg-hero__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #222;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 32px;
    text-align: center;
  }
}

.pg-hero__subtitle {
  font-family: "Pretendard", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 146%;
  color: #222;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 16px;
    text-align: center;
  }
}

.pg-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 369px;
  height: 70px;
  background: #000;
  border: 1px solid #00da5d;
  border-radius: 200px;
  box-shadow: 0px 2px 20px 0px #00da5d;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pg-hero__cta:hover {
  box-shadow: 0px 4px 30px 0px #00da5d;
  transform: translateY(-2px);
}

/* PC에서 .pc-only가 display: block !important 로 덮는 것 방지 */
@media (min-width: 769px) {
  .pg-hero__cta.pc-only {
    display: inline-flex !important;
  }
  .cm-btn {
    display: inline-flex !important;
  }
}

.pg-hero__cta-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 22.88px;
  background-image: linear-gradient(
    166.466deg,
    rgb(27, 254, 124) 12.322%,
    rgb(0, 205, 212) 121.58%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pg-hero__figure {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 204px;
  height: 249px;
  z-index: 1;
  margin: 0;
}

.pg-hero__image {
  position: absolute;
  width: 232.96%;
  height: 106.81%;
  left: -65.92%;
  top: -6.81%;
  max-width: none;
  object-fit: contain;
}

/* ==========================================
   2. Problems Section
   ========================================== */

.pg-hero-problems {
  background-color: #fff;
  background-image: url("../images/director-bg-v2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  @media (max-width: 768px) {
    background-image: url("../images/program-page-bg-mo-1.png");
  }
}

.pg-problems {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 70px;
  @media (max-width: 768px) {
    padding: 50px 16px;
  }
}

.pg-problems__list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  width: 100%;
  max-width: 1020px;
  @media (max-width: 768px) {
    width: 100%;
    gap: 6px;
  }
}

.pg-problems__title-card {
  display: flex;
  align-items: center;
  padding-left: 32px;
  width: 328px;
  height: 240px;
  @media (max-width: 768px) {
    width: 100%;
    justify-content: center;
    height: auto;
    padding: 0;
  }
}

.pg-problems__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 134%;
  letter-spacing: -1.08px;
  color: #222;
  @media (max-width: 768px) {
    color: #222;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.66px;
    margin-bottom: 12px;
  }
}

.pg-problem-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.04);
  padding: 30px;
  width: 328px;
  height: 240px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    padding: 16px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.pg-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 16px 36px 0px rgba(0, 0, 0, 0.08);
}

.pg-problem-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
  @media (max-width: 768px) {
    width: 24px;
    height: 24px;
  }
}

.pg-problem-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  @media (max-width: 768px) {
    width: 24px;
    height: 24px;
  }
}

.pg-problem-card__text {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.72px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.48px;
  }
}

.pg-problem-card__text p {
  margin: 0;
}

.pg-problem-card__text strong {
  font-weight: 700;
  color: #08b271;
}

/* ==========================================
   3. Cost Table Section
   ========================================== */

.pg-cost {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  background: #fff;
  padding: 30px 0 50px 0;
  @media (max-width: 768px) {
    padding: 20px 16px 50px 16px;
  }
}

.pg-cost__container {
  width: 100%;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  @media (max-width: 768px) {
    gap: 20px;
  }
}

.pg-cost__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 134%;
  letter-spacing: -1.08px;
  color: #222;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 22px;
    letter-spacing: -0.66px;
  }
}

.pg-cost__table {
  width: 100%;
  display: flex;
  background: #fff;
  backdrop-filter: blur(7.5px);
  overflow: hidden;
  border-radius: 8px;
  @media (max-width: 768px) {
    overflow-x: auto;
  }
}

.pg-cost__column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pg-cost__header {
  background: #f8f8f8;
  padding: 16px 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.28;
  letter-spacing: -0.3px;
  color: #818181;
  text-align: center;
}

.pg-cost__column:first-child .pg-cost__header {
  border-radius: 5px 0 0 0;
}

.pg-cost__column:last-child .pg-cost__header {
  border-radius: 0 5px 0 0;
}

.pg-cost__cell {
  flex: 1;
  padding: 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #0a0a0a;
  text-align: center;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 16px;
    font-size: 15px;
    min-height: 74px;
    height: 74px;
  }
}

.pg-cost__footer {
  padding: 24px 50px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #626262;
  text-align: center;
  background: #fff;
  border: 5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  @media (max-width: 768px) {
    padding: 16px;
    font-size: 16px;
    letter-spacing: -0.48px;
    border: 3px solid #000;
  }
}

.pg-cost__column:first-child .pg-cost__footer {
  border-radius: 0 0 0 8px;
  border-right: none;
}

.pg-cost__column:last-child .pg-cost__footer {
  border-radius: 0 0 8px 0;
  border-left: none;
}

.pg-cost__footer--highlight {
  font-size: 20px;
  letter-spacing: -0.6px;
  color: #000;
  @media (max-width: 768px) {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
}

/* ==========================================
   4. Comparison Section
   ========================================== */

/* section */
.pg-comparison {
  background: #fff;
  padding: 0px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 20px 16px 50px 16px;
  }
}

/* .pg-comparison__container */
.pg-comparison__container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: stretch;
  @media (max-width: 768px) {
    flex-direction: column;
  }
}

/* .pg-comparison__column */
.pg-comparison__column {
  display: flex;
  padding: 40px 34px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  border-radius: 20px;
  background: #eaf4f9;
  @media (max-width: 768px) {
    width: 100%;
    padding: 20px 16px 16px 16px;
    border-radius: 10px;
    gap: 12px;
  }
}

.pg-comparison__column--low {
  background: #eaf4f9;
}

.pg-comparison__column--high {
  border-radius: 20px;
  background: linear-gradient(0deg, #eaf9f7 0%, #eaf9f7 100%),
    linear-gradient(270deg, #fff 86.67%, #f3f3f3 100%) !important;
}

.pg-comparison__column--featured {
  border: 4px solid #000;
  box-shadow: 0px 4px 20px 0px rgba(0, 218, 0, 0.47);
}

/* .pg-comparison__header */
.pg-comparison__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  @media (max-width: 768px) {
    padding: 0;
    gap: 0;
    height: 57px;
  }
}

.pg-comparison__header-title {
  color: #222;
  text-align: center;
  font-family: Pretendard;
  font-size: 32px;
  font-weight: 700;
  line-height: 169%; /* 54.08px */
  letter-spacing: -0.96px;
  @media (max-width: 768px) {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
}

.pg-comparison__header-subtitle {
  color: #222;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 169%;
  letter-spacing: -0.6px;
  @media (max-width: 768px) {
    font-size: 15px;
    letter-spacing: -0.45px;
  }
}

.pg-comparison__header--featured {
  background: #000;
  background: linear-gradient(101.97deg, #67ff7b 28.865%, #deffbd 70.364%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: none;
}

/* .pg-comparison__cards */
.pg-comparison__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
  width: 100%;
}

/* .pg-comparison-card */
.pg-comparison-card {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 16px;
    gap: 6px;
  }
}

.pg-comparison-card__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 134%;
  letter-spacing: -0.66px;
  color: #000;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 18px;
    letter-spacing: -0.54px;
  }
}

.pg-comparison-card__desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #444;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 22px;
  }
}

/* .pg-comparison__quote-container */
.pg-comparison__quote-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.pg-comparison__quote {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.34;
  letter-spacing: -0.2px;
  color: #444;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 134%; /* 21.44px */
    letter-spacing: -0.16px;
  }
}

/* Table layout (optional / alternate) */
.pg-comparison__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.34;
  letter-spacing: -1.8px;
  color: #222;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 24px;
  }
}

.pg-comparison__table {
  width: 1200px;
  height: 577px;
  display: grid;
  grid-template-columns: 75px 310px 400px 310px;
  gap: 10px;
  position: relative;
  @media (max-width: 768px) {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }
}

.pg-comparison__labels {
  display: flex;
  flex-direction: column;
  @media (max-width: 768px) {
    display: none;
  }
}

.pg-comparison__label-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.32px;
  color: #9097a4;
  text-align: center;
}

.pg-comparison__label-header {
  height: 97px;
  padding-top: 31px;
  padding-bottom: 24px;
}

.pg-comparison__label-footer {
  height: 100px;
}

.pg-comparison__cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 50px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: #808080;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  @media (max-width: 768px) {
    font-size: 14px;
    padding: 16px 20px;
  }
}

.pg-comparison__column--featured .pg-comparison__cell {
  font-weight: 500;
  color: #222;
  border-bottom-color: rgba(0, 0, 0, 0.07);
}

.pg-comparison__cell--price {
  font-weight: 700;
}

.pg-comparison__footer {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 50px;
  background: #fafafa;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.48px;
  color: #767d8b;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  @media (max-width: 768px) {
    font-size: 18px;
    padding: 16px 20px;
    height: 70px;
  }
}

.pg-comparison__column--low .pg-comparison__footer,
.pg-comparison__column--high .pg-comparison__footer {
  border: 1px solid #d7d8da;
  border-top: none;
}

.pg-comparison__footer--featured {
  background: #fafafa;
  border: 4px solid #000;
  border-top: none;
  background: linear-gradient(107.447deg, #00c253 28.865%, #00a595 70.364%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   5. Benefits Section (Dark Gradient)
   ========================================== */

.pg-benefits {
  position: relative;
  background: linear-gradient(
    180deg,
    rgb(1, 1, 1) 0%,
    rgb(1, 1, 1) 57.087%,
    rgb(0, 179, 76) 72.104%,
    rgb(0, 218, 93) 82.46%,
    rgb(230, 234, 232) 100%
  );
  overflow: hidden;
  padding: 100px 0;
  @media (max-width: 768px) {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.pg-benefits__watermark {
  position: absolute;
  left: 50%;
  top: 700px;
  transform: translateX(-50%);
  width: 40%;
  max-width: 1200px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  @media (max-width: 768px) {
    top: 520px;
    max-width: 720px;
  }
}

.pg-benefits__watermark img {
  display: block;
  height: auto;
}

.pg-benefits__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 45px;
  @media (max-width: 768px) {
    margin-bottom: 0;
  }
}

.pg-benefits__subtitle {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.72px;
  color: transparent;
  background-image: linear-gradient(
      160.658deg,
      rgb(27, 254, 124) 12.322%,
      rgb(0, 205, 212) 121.58%
    ),
    linear-gradient(90deg, rgb(150, 150, 150) 0%, rgb(150, 150, 150) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 15px;
  }
}

.pg-benefits__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 134%;
  letter-spacing: -0.8px;
  color: #fff;
  margin: 0;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 25px;
    letter-spacing: -0.5px;
  }
}

.pg-benefits__cards {
  display: flex;
  gap: 12px;
  width: 1200px;
  margin: 0 auto 136px;
  @media (max-width: 768px) {
    width: 100%;
    flex-direction: column;
    margin: 0;
  }
}

.pg-benefits__card {
  flex: 1;
  background: rgba(58, 58, 58, 0.4);
  border-radius: 16px;
  padding: 40px;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    padding: 20px 16px;
    gap: 10px;
  }
}

.pg-benefits__card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  @media (max-width: 768px) {
    align-items: center;
    gap: 6px;
  }
}

.pg-benefits__card-number {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  opacity: 0.4;
  margin: 0;
  white-space: nowrap;
}

.pg-benefits__card-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 170%;
  color: #fff;
  white-space: nowrap;
  @media (max-width: 768px) {
    font-size: 18px;
  }
}

.pg-benefits__card-desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.7);
  @media (max-width: 768px) {
    font-size: 15px;
  }
}

.pg-benefits__card-desc span {
  color: #26ff82;
}

.pg-benefits__card-icon {
  width: 56px;
  height: 56px;
  overflow: hidden;
}

.pg-benefits__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pg-benefits__price-section {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  width: 1200px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.pg-benefits__price-section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 192px;
}

.pg-benefits__price-section-content img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.pg-benefits__price-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.34;
  letter-spacing: -2px;
  color: #fff;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 28px;
  }
}

.pg-benefits__price-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  @media (max-width: 768px) {
    gap: 5px;
  }
}

.pg-benefits__price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 50px;
  border-radius: 7px;
  @media (max-width: 768px) {
    padding: 10px 0;
    width: 100%;
  }
}

.pg-benefits__price-header p {
  flex: 1;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.32px;
  color: #989898;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.pg-benefits__price-row {
  background: #fafafa;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 50px;
  @media (max-width: 768px) {
    padding: 24px 0;
    width: 100%;
  }
}

.pg-benefits__price-row p {
  flex: 1;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.4px;
  color: #222;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
}

.pg-benefits__price-footer {
  background: #242424;
  border-radius: 16px;
  padding: 40px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 24px 16px;
    height: 72px;
    border-radius: 10px;
  }
}

.pg-benefits__price-footer p {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.48px;
  text-align: center;
  color: transparent;
  background-image: linear-gradient(
      167.949deg,
      rgb(27, 254, 124) 12.322%,
      rgb(0, 205, 212) 121.58%
    ),
    linear-gradient(90deg, rgb(34, 34, 34) 0%, rgb(34, 34, 34) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 17px;
  }
}

/* ==========================================
   6. Timeline Section
   ========================================== */

.pg-timeline {
  background: #e6eae8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 70px;
  @media (max-width: 768px) {
    padding: 20px 16px 50px 16px;
    gap: 0;
  }
}

.pg-timeline__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.34;
  letter-spacing: -0.8px;
  color: #222;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 22px;
    display: flex;
    height: 53px;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    letter-spacing: -0.44px;
  }
}

.pg-timeline__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  @media (max-width: 768px) {
    gap: 10px;
  }
}

.pg-timeline__weeks {
  position: relative;
  display: flex;
  gap: 10px;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 4px;
  }
}

.pg-timeline__week {
  flex: 1;
  background: #fff;
  border: 1px solid #dce0f0;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  @media (max-width: 768px) {
    width: 100%;
    padding: 20px 16px;
    gap: 6px;
  }
}

.pg-timeline__week-number {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.72px;
  color: #00c468;
  margin: 0;
  white-space: nowrap;
}

.pg-timeline__week-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.96px;
  color: #242424;
  margin: 0;
  white-space: nowrap;
  @media (max-width: 768px) {
    font-size: 20px;
  }
}

.pg-timeline__week-desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.64px;
  color: #242424;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.pg-timeline__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 628px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.pg-timeline__arrow {
  background: #242424;
  border-radius: 25px;
  width: 24px;
  height: 24px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pg-timeline__arrow img {
  min-width: 24px;
  height: 24px;
  object-fit: contain;
}

.pg-timeline__arrow-icon--right {
  display: block;
}

.pg-timeline__arrow-icon--down {
  display: none;
}

@media (max-width: 768px) {
  .pg-timeline__arrows {
    display: flex;
    width: auto;
    flex-direction: column;
    gap: 107px;
  }

  .pg-timeline__arrow-icon--right {
    display: none;
  }

  .pg-timeline__arrow-icon--down {
    display: block;
  }
}

.pg-timeline__footer {
  border-radius: 10px;
  background: linear-gradient(300deg, #7abe6e -15.27%, #086513 82.27%);
  padding: 40px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 20px 16px;
    height: auto;
  }
}

.pg-timeline__footer p {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  @media (max-width: 768px) {
    font-size: 18px;
    white-space: normal;
  }
}

/* ==========================================
   7. Case Studies Section
   ========================================== */

.pg-cases {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: visible;
  position: relative;
  background: linear-gradient(180deg, #e6eae8 0%, #fff 75%), #e9f2ff;
  padding: 50px 0 30px 0;
  @media (max-width: 768px) {
    padding: 0 16px;
  }
}

.pg-cases__header {
  padding: 0 40px;
  @media (max-width: 768px) {
    text-align: center;
  }
}

.pg-cases__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.34;
  letter-spacing: -0.8px;
  color: #222;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 24px;
    text-align: center;
  }
}

.pg-cases__figure {
  margin: 0;
  padding: 0;
  line-height: 0;
  @media (max-width: 768px) {
    width: 100%;
    overflow: hidden;
  }
}

.pg-cases__container {
  position: relative;
  padding: 0 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 618px 1fr;
  gap: 40px;
  min-height: 500px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }
}

.pg-cases__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 618px;
  list-style: none;
  margin: 0;
  padding: 0;
  @media (max-width: 768px) {
    width: 100%;
    max-width: 100%;
    gap: 4px;
    position: relative;
    top: -15%;
  }
}

.pg-cases__card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
  padding: 32px;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  @media (max-width: 768px) {
    width: 100%;
    padding: 22px 16px;
    height: auto;
    min-height: auto;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }
}

.pg-cases__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (max-width: 768px) {
    align-items: center;
    text-align: center;
  }
}

.pg-cases__card-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #222;
  margin: 0;
  white-space: nowrap;
  @media (max-width: 768px) {
    font-size: 18px;
    white-space: normal;
    color: #00a651;
  }
}

.pg-cases__card-desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #535353;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.5;
    color: #222;
    text-align: center;
  }
}

.pg-cases__card-icon {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pg-cases__card-icon--1 {
  background: linear-gradient(
    221.906deg,
    rgb(0, 146, 39) 18.726%,
    rgb(20, 175, 157) 124.75%
  );
}

.pg-cases__card-icon--2 {
  background: linear-gradient(
    221.906deg,
    rgb(0, 146, 39) 18.726%,
    rgb(20, 175, 157) 124.75%
  );
}

.pg-cases__card-icon--3 {
  background: linear-gradient(
    221.906deg,
    rgb(0, 146, 39) 18.726%,
    rgb(20, 175, 157) 124.75%
  );
}

.pg-cases__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pg-cases__image {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 683px !important;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  overflow: visible;
  @media (max-width: 768px) {
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 200px;
    object-fit: cover;
    display: block;
  }
}

/* ==========================================
   9. Offline Feedback Section
   ========================================== */

.pg-offline {
  display: flex;
  padding: 100px 0 50px 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #fff;
  @media (max-width: 768px) {
    padding: 0 16px 50px 16px;
  }
}

.pg-offline__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 42px;
  align-items: flex-start;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

.pg-offline__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 364px;
  @media (max-width: 768px) {
    min-height: auto;
    justify-content: flex-start;
    gap: 24px;
  }
}

.pg-offline__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  align-self: stretch;
  @media (max-width: 768px) {
    gap: 16px;
    align-items: center;
  }
}

.pg-offline__badge-icon {
  width: 107px;
  height: 37px;
  object-fit: cover;
}

.pg-offline__badge {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #00ae57;
  @media (max-width: 768px) {
    font-size: 15px;
  }
}

.pg-offline__badge-popup {
  position: absolute;
  left: 218px;
  top: -4px;
}

.pg-offline__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 134%;
  letter-spacing: -2px;
  color: #222;
  @media (max-width: 768px) {
    font-size: 24px;
    text-align: center;
  }
}

.pg-offline__desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #535353;
  @media (max-width: 768px) {
    font-size: 16px;
    text-align: center;
  }
}

.pg-offline__desc strong {
  font-weight: 700;
}

.pg-offline__notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pg-offline__notice-icon {
  width: 42px;
  height: 42px;
  border-radius: 150px;
  background: #eff8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pg-offline__notice-text {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  color: #8f8f8f;
  letter-spacing: -0.39px;
  @media (max-width: 768px) {
    text-align: center;
  }
}

.pg-offline__notice-text strong {
  font-weight: 700;
  color: #1fa334;
}

.pg-offline__cards {
  display: flex;
  gap: 10px;
  @media (max-width: 768px) {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pg-offline__card {
  width: 240px;
  height: 364px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  @media (max-width: 768px) {
    width: 100%;
    padding: 34px 30px;
    gap: 6px;
    height: auto;
    align-items: center;
    text-align: center;
  }
}

.pg-offline__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pg-offline__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.pg-offline__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  @media (max-width: 768px) {
    gap: 6px;
  }
}

.pg-offline__card-subtitle {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  @media (max-width: 768px) {
    font-size: 18px;
    margin: 0;
  }
}

.pg-offline__card-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #fff;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 20px;
  }
}

/* ==========================================
   10. Community Section
   ========================================== */

.pg-community {
  background: #fff;
  display: flex;
  padding: 100px 0 50px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  align-self: stretch;
  @media (max-width: 768px) {
    padding: 0 16px 80px 16px;
  }
}

.pg-community__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  @media (max-width: 768px) {
    gap: 10px;
  }
}

.pg-community__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 134%;
  letter-spacing: -2px;
  color: #222;
  text-align: center;
  @media (max-width: 768px) {
    font-size: 22px;
    height: 53px;
    letter-spacing: -1.1px;
  }
}

.pg-community__cards {
  width: 100%;
  display: flex;
  gap: 16px;
  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.pg-community__card {
  flex: 1;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 40px;
  height: 354px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  @media (max-width: 768px) {
    gap: 15px;
    border-radius: 10px;
    padding: 20px 16px;
    height: auto;
  }
}

.pg-community__card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (max-width: 768px) {
    gap: 4px;
    align-items: center;
  }
}

.pg-community__card-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
  color: #000;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 20px;
  }
}

.pg-community__card-desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 134%;
  color: rgba(0, 0, 0, 0.7);
  @media (max-width: 768px) {
    font-size: 15px;
    text-align: center;
  }
}

.pg-community__card-image {
  width: 100%;
  height: 124px;
  overflow: hidden;
  position: relative;
  @media (max-width: 768px) {
    height: 70px;
  }
}

.pg-community__card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  @media (max-width: 768px) {
    height: 70px;
  }
}

.pg-community__quote {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.34;
  letter-spacing: -0.84px;
  color: #222;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 20px;
  }
}

.pg-community__quote strong {
  font-weight: 700;
}

/* ==========================================
   12. CTA Section
   ========================================== */

.pg-cta {
  background: #000;
  padding: 80px 0;
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 50px 16px;
    height: auto;
  }
}

.pg-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  background-image: url("../images/here.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
}

.pg-cta__ellipse-green {
  display: none;
  position: absolute;
  left: calc(50% - 174.5px);
  top: -647px;
  transform: translateX(-50%);
  width: 855px;
  height: 869px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 255, 109, 0.3) 0%,
    rgba(0, 255, 109, 0) 100%
  );
  filter: blur(100px);
}

.pg-cta__ellipse-blue {
  display: none;
  position: absolute;
  left: calc(50% + 330px);
  top: calc(50% + 401.5px);
  transform: translate(-50%, -50%);
  width: 596px;
  height: 606px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(0, 196, 255, 0.3) 0%,
    rgba(0, 196, 255, 0) 100%
  );
  filter: blur(100px);
}

.pg-cta__noise {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1872px;
  height: 519px;
  background-image: url("../images/cta-noise.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: soft-light;
  opacity: 0.3;
}

.pg-cta__container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
}

.pg-cta__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  @media (max-width: 768px) {
    gap: 20px;
  }
}

.pg-cta__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  @media (max-width: 768px) {
    gap: 10px;
  }
}

.pg-cta__title {
  font-family: "Helvetica Neue", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: #fff;
  @media (max-width: 768px) {
    font-size: 22px;
    line-height: 140%; /* 30.8px */
    letter-spacing: -0.66px;
  }
}

.pg-cta__subtitle {
  font-family: "Helvetica Neue", "Noto Sans KR", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: -0.44px;
  color: #fff;
  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.pg-cta__pricing {
  width: 750px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  @media (max-width: 768px) {
    width: 100%;
    max-width: 450px;
  }
}

.pg-cta__price-box {
  background: linear-gradient(
    to right,
    rgba(0, 255, 109, 0.1),
    rgba(0, 196, 255, 0.1)
  );
  border: 2px solid #00ff6d;
  border-radius: 5px;
  padding: 34px 151px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  @media (max-width: 768px) {
    padding: 28px;
    justify-content: center;
    gap: 16px;
  }
}

.pg-cta__price-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-cta__price-divider-mo {
  display: block;
  line-height: 0;
}

.pg-cta__price-divider-mo svg {
  display: block;
}

.pg-cta__price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  @media (max-width: 768px) {
    flex-direction: column-reverse;
  }
}

.pg-cta__price-value {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: #fff;
  text-align: right;
  @media (max-width: 768px) {
    font-size: 24px;
  }
}

.pg-cta__price-label {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #00ff6d;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.pg-cta__button {
  background: #00ff6d;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.18px;
  color: #000;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  @media (max-width: 768px) {
    height: 60px;
    font-size: 16px;
  }
}

.pg-cta__button:hover {
  background: #00e861;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 109, 0.3);
}

.pg-cta__footer {
  font-family: "Helvetica Neue", "Noto Sans KR", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: -0.26px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  @media (max-width: 768px) {
    letter-spacing: -0.39px;
  }
}

/* ==========================================
   13. ChangeMakers Section
   ========================================== */

.pg-change-makers {
  background: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  @media (max-width: 768px) {
    padding: 0;
  }
}

.pg-change-makers__title {
  display: flex;
  width: 1020px;
  height: 53px;
  flex-direction: column;
  justify-content: center;
  color: #222;
  text-align: center;
  font-family: Pretendard;
  font-size: 36px;
  font-weight: 700;
  line-height: 134%;
  letter-spacing: -1.8px;
  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    font-size: 22px;
  }
}

.pg-change-makers__image {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 670px !important;
  object-fit: cover;
  overflow: visible;
}

.pg-change-makers__swipe {
  width: 100%;
  padding: 0 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Figma: 초록 양방향 화살표 + 중앙 원 + mouse.svg + 안내 문구 */
.pg-change-makers__swipe-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.pg-change-makers__swipe-arrow {
  display: block;
  position: relative;
  color: #00c253;
  line-height: 0;
}

.pg-change-makers__swipe-arrow svg {
  display: block;
}

.pg-change-makers__swipe-arrow-img {
  display: block;
  width: 270px;
  height: auto;
  object-fit: contain;
}

/* 표: 좌우 스와이프로 확인 */
.pg-change-makers__swipe-inner {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  position: relative;
  scrollbar-width: thin;
}

.pg-change-makers__swipe-inner::-webkit-scrollbar {
  height: 6px;
}

.pg-change-makers__swipe-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.pg-change-makers__image-mo {
  display: block;
  width: auto;
  min-width: 560px;
  margin-top: 20px;
  height: auto;
  vertical-align: top;
}

/* ==========================================
   15. Recommendation Section
   ========================================== */

.pg-recommend {
  background: #fff;
  padding: 0 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 0 16px 50px 16px;
  }
}

.pg-recommend__container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.pg-recommend__title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.34;
  letter-spacing: -1.8px;
  color: #222;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 24px;
  }
}

.pg-recommend__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 12px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.pg-recommend__card {
  background: #fafafa;
  border-radius: 6px;
  padding: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 16px 16px 16px 24px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.pg-recommend__icon {
  width: 23px;
  height: 22px;
  flex-shrink: 0;
}

.pg-recommend__text {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.pg-recommend__conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pg-recommend__conclusion-sub {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.34;
  letter-spacing: -0.72px;
  color: #222;
  text-align: center;
  margin: 0;
  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.pg-recommend__conclusion-main {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.34;
  letter-spacing: -1.02px;
  color: #147b24;
  text-align: center;
  margin-top: 10px;
  @media (max-width: 768px) {
    font-size: 20px;
  }
}

/* ==========================================
   16. FAQ Section
   ========================================== */

.pg-faq {
  background: #fff;
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  @media (max-width: 768px) {
    padding: 50px 16px;
    gap: 30px;
  }
}

.pg-faq__container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 12px;
  overflow: hidden;
  @media (max-width: 768px) {
    gap: 30px;
  }
}

.pg-faq__header {
  display: flex;
  padding: 0 0 34px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  @media (max-width: 768px) {
    align-items: center;
    padding: 0;
    gap: 10px;
  }
}

.pg-faq__title {
  color: #222;
  font-family: "Pretendard", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 134%;
  letter-spacing: -1.6px;
  @media (max-width: 768px) {
    font-size: 22px;
    letter-spacing: -1.1px;
  }
}

.pg-faq__subtitle {
  color: #999;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.3px;
  margin: 0;
}

.pg-faq__list {
  display: flex;
  flex-direction: column;
}

.pg-faq__item {
  background: #fff;
  border-bottom: 1px solid #dedede;
  transition: all 0.3s ease;
}

.pg-faq__item:last-child {
  border-bottom: none;
}

.pg-faq__question {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #444;
  position: relative;
  @media (max-width: 768px) {
    padding: 20px;
    font-size: 16px;
  }
}

.pg-faq__item[open] .pg-faq__question {
  font-weight: 700;
}

.pg-faq__question::-webkit-details-marker {
  display: none;
}

.pg-faq__question::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pg-faq__item[open] .pg-faq__question::after {
  background-image: url("../images/icon-arrow-up.svg");
}

.pg-faq__answer {
  padding: 30px 24px;
  background: #f9f9f9;
  border-bottom: 1px solid #dedede;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #444;
  @media (max-width: 768px) {
    padding: 20px 16px;
    font-size: 15px;
  }
}

.pg-faq__answer p {
  margin: 0;
}

.divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: rgba(34, 34, 34, 0.1);
}
