/* =================================
 * POINK 페이지 스타일 (pages/poink.css)
 * ================================= */

/* --- 페이지 공통 변수 --- */
:root {
  --poink-orange: #ff6900;
  --poink-background: #f4f6f8;
}

/* --- 공통 섹션 스타일 --- */
.section-header h3 {
  color: var(--poink-orange);
  margin-bottom: 16px;
}
.section-header h2 {
  margin-bottom: 4px;
}
.section-header .highlight {
  color: var(--poink-orange);
}
.section-header p {
  margin-bottom: 100px;
}

/* --- 1. 히어로 배너 --- */
.poink-banner {
  background: linear-gradient(
    111deg,
    #ff8307 -10.1%,
    #ff6900 64.77%,
    #ff6900 103.55%
  );
  color: #fff;
}
.poink-banner .section-header h2,
.poink-banner .section-header p {
  color: #fff;
}
.poink-banner .section-header p {
  margin: 0;
}

/* --- 2. 앱 쇼케이스 --- */
.app-showcase {
  background: #fafafa;
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.app-showcase-grid img {
  max-width: 270px;
  border-radius: 16px;
}

.app-showcase-mobile,
.poink-for-store-mobile {
  display: none;
}

.features-image-wrapper {
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 36px;
  background: #f6f6f6;
  box-shadow: 6.796px 0 16.99px 0 #fff inset,
    0 -1.699px 5.097px 0 rgba(0, 0, 0, 0.1) inset,
    4px 20px 40px 0 rgba(0, 0, 0, 0.1),
    -1.699px -8.495px 16.99px 0 rgba(0, 0, 0, 0.1) inset;
  width: fit-content;
}
.features-image-wrapper img {
  border-radius: 26px;
}

/* --- 3. 핵심 기능 설명 --- */
.poink-features .section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.poink-features .section-header {
  width: 50%;
}
.poink-features .section-header p,
.poink-features .section-header h2,
.poink-features .section-header h3 {
  text-align: left;
}

.download-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.download-badge-item {
  display: flex;
  width: 148px;
  height: 64px;
  padding: 0 16px;
  justify-content: flex-start;
  align-items: center;
  border-radius: 8px;
  border: 0 solid #a6a6a6;
  background: #000;
  gap: 16px;
}
.download-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.download-badge-text span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.2px;
  height: 20px;
}

/* --- 4. POINK for Store --- */
.poink-for-store {
  background: #fafafa;
}

.poink-for-store-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 36px;
  justify-content: center;
}
.poink-for-store-grid img {
  max-width: 270px;
  border-radius: 16px;
}

.download-badges-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
.download-badges-wrapper h3 {
  color: var(--poink-orange);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}

.poink-features .download-badges-wrapper {
  align-items: flex-start;
}

/* --- CTA (하단 문의) --- */
.section-cta .section-header h3 {
  color: var(--color-primary);
}

.section-cta .section-header p {
  margin-bottom: 24px;
}

/* --- 6. 반응형 --- */
/* @media (max-width: 1024px) {
  .feature-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
} */

@media (max-width: 720px) {
  .poink-features .section-container {
    flex-direction: column;
    gap: 150px;
  }
  .poink-features .section-header {
    width: 90%;
  }

  .poink-for-store-grid {
    display: none;
  }

  .poink-features .section-header p,
  .poink-features .section-header h2,
  .poink-features .section-header h3 {
    text-align: center;
  }

  .section-header h3 {
    margin-bottom: 8px;
  }

  .content-text {
    margin-bottom: 16px !important;
  }

  .download-badge-text span {
    display: none;
  }

  .download-badges-wrapper h3 {
    font-size: 12px;
  }

  .download-badge-item {
    width: 120px;
    height: 44px;
    gap: 8px;
    padding: 0;
    justify-content: center;
  }
  .download-badge-icon {
    width: 20px;
  }
  .download-badge-text-icon {
    height: 14px;
  }

  .app-showcase-text,
  .app-showcase-grid {
    display: none;
  }

  .app-showcase-mobile,
  .poink-for-store-mobile {
    display: block;
    margin-top: 40px;
  }

  .section-header p {
    margin-bottom: 0;
  }
  .download-badges {
    justify-content: center;
  }

  .features-image-wrapper {
    display: none;
  }

  .poink-app-showcase-swiper,
  .poink-for-store-swiper {
    width: 100%;
    overflow: hidden;
  }

  .poink-app-showcase-swiper .swiper-slide,
  .poink-for-store-swiper .swiper-slide {
    width: 240px;
    height: 427px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }

  .poink-app-showcase-swiper .swiper-slide img,
  .poink-for-store-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-cta .section-header p {
    margin-bottom: 24px;
  }

  .download-badges-wrapper,
  .poink-features .download-badges-wrapper {
    align-items: center;
    margin-top: 40px;
  }
}
