@font-face {
  font-family: "PretendardVariable";
  src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

/* Pretendard weight helpers */
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-extrabold {
  font-weight: 800;
}

/* ========================
   Reset & Base
   ======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "PretendardVariable", "Noto Sans KR", sans-serif;
  font-weight: 600; /* SemiBold default */
  color: #141415;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
}

/* ========================
   Design Tokens
   ======================== */
:root {
  --primary: #00a0b6;
  --primary-light: rgba(0, 160, 182, 0.12);

  --light-teal-bg: #f0fafb;
  --card-radius: 16px;
  --section-pad: 124px;
  --inner-max: 1440px;
}

/* ========================
   Page Container
   ======================== */
.page-container {
  max-width: var(--inner-max);
  margin: 0 auto;
  overflow: hidden;
}

/* ========================
   Common
   ======================== */
.section-inner {
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}
.section-badge {
  display: inline-block;
  width: fit-content;
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.section-title {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.35;
  color: #141415;
  margin-bottom: 16px;
}
.section-title.white {
  color: #fff;
}
.section-title.center {
  text-align: center;
}
.section-desc {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #9e9e9e;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 48px;
}

.seller-page-desc {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #9e9e9e;

  text-align: center;
  margin-bottom: 48px;
}
.partner-page-desc {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #9e9e9e;

  text-align: center;
  margin-bottom: 48px;
}

.contact-desc {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #9e9e9e;
  line-height: 1.8;

  margin-bottom: 20px;
}
.section-desc.left {
  text-align: left;
  margin-bottom: 24px;
}

/* ========================
   Header
   ======================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.main-header.scrolled {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.header-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner-img-wrap {
  cursor: pointer;
}
.banner-img {
  width: 125px;
  height: 30px;
  object-fit: contain;
}

/* ========================
   Hero Section
   ======================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(180deg, #e8f8fb 40%, #f8fdfe 80%, #fff 100%);
  text-align: center;
  padding-bottom: 60px;
}
.hero-circle-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 60px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-sub-title {
  font-size: 22px;
  color: var(--primary);
  font-family: "PretendardVariable", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  font-size: 58px;
  line-height: 1.3;
  color: #141415;
  margin-bottom: 32px;
  align-items: center;
  gap: 10px;
}
.hero-title-flex {
  display: flex;
  align-items: center;
}

.QR-img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: inline-block;
  vertical-align: middle;
  animation: qrBounce 2s ease-in-out infinite;
}
@keyframes qrBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.partner-btn {
  background: var(--primary);
  color: #fff;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding: 14px 36px;
  border-radius: 50px;
  margin-bottom: 32px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.go-btn-flex {
  display: flex;
  gap: 24px;
}
.seller-go-btn {
  border: 1px solid var(--primary);
  background: #fff;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 22px;
  padding: 14px 36px;
  border-radius: 50px;
  margin-bottom: 32px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.partner-btn:hover {
  transform: translateY(-1px);
}

.seller-go-btn:hover {
  transform: translateY(-1px);
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 22px;
  color: #93989a;
}
.hero-features li {
  font-size: 20px;
  padding: 0 14px;
}
.hero-features li.divider {
  color: #ccc;
  padding: 0;
}
.section-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ========================
   Section 1: 페인포인트
   ======================== */
.pain-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("/img/landing/painpoint.webp");

  background-size: cover;
  background-position: center;
  padding: 124px;
  width: 90%;
  border-radius: 20px;
}

.pain-inner {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pain-badge {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-weight: 700;
  font-size: 18px;
  padding: 6px 20px;
  border-radius: 999px;
}

.pain-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.pain-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-emotion {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pain-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #141415;
  line-height: 1.6;
}

.painpoint-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================
   Section 2: 솔루션 키포인트
   ======================== */
.solution-section {
  background: #fff;
  padding: var(--section-pad);
}
.solution-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;

  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.solution-card {
  padding: 10px;
  background: #e5f7fa;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.solution-img-wrap {
  display: flex;
  justify-content: center;
}
.solution-img-wrap.no-badge {
}
.solution-img {
  padding: 24px;
  width: auto;
  height: 260px;
  object-fit: contain;
  display: block;
}
.position-wrap {
  position: relative;
}
.solution-badge1 {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: var(--primary);
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  z-index: 1;
}

.solution-badge2 {
  position: absolute;
  top: 25px;
  right: 45px;
  background: var(--primary);
  color: #ffffff;

  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px;
  border: 2px solid #ffffff;
  border-radius: 20px;
  z-index: 1;
}
.solution-card-title-wrap {
  border-radius: 20px;
  background-color: #ffffff;
  margin-top: 10px;
}
.solution-card-title {
  font-family: "PretendardVariable", sans-serif;

  font-size: 20px;
  color: #141415;
  padding: 20px 20px 8px;
}
.solution-card-desc {
  font-size: 16px;
  color: #9e9e9e;
  line-height: 1.65;
  padding: 0 20px 24px;
}

/* ========================
   Section 3: Flow
   ======================== */
.flow-section {
  background: #f7f9fb;
  padding: var(--section-pad);
}
.flow-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-section .section-title {
  margin-bottom: 40px;
}
.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  overflow-x: auto;
}
.flow-step {
  background: #fff;
  border: 1.5px solid #e4eaee;
  border-radius: 12px;
  padding: 40px 20px;
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.06);
}
.flow-step--active {
  background: var(--primary);
  color: #ccc;
}
.flow-step--active .flow-num {
  background: #ffffff;
}

.flow-step--active .flow-step-title {
  color: #ffffff;
}

.flow-step--active .flow-step-desc {
  color: #ffffff;
}

.flow-num {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 20px;
  background-color: #e0f5f7;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.05em;
}
.flow-step-title {
  font-family: "PretendardVariable", sans-serif;

  font-size: 24px;
  color: #141415;
  line-height: 1.4;
}
.flow-step-desc {
  font-size: 14px;
  color: #9e9e9e;
  font-family: "PretendardVariable", sans-serif;

  line-height: 1.6;
}
.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-size: 16px;
  padding: 0 6px;
  flex-shrink: 0;
}

/* ========================
   Section 4: 맞춤형 서비스
   ======================== */
.custom-section {
  background: #fff;
  padding: var(--section-pad);
}
.section-inner--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.custom-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.custom-content .section-title {
  margin-bottom: 16px;
}
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.bullet-list li {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #151515;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.4;
}
.custom-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-img {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.1));
}
.custom-img-responsive {
  display: none;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}
.kiosk-img {
  width: 48%;
  max-width: 580px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
  border-radius: 20px;
}

/* ========================
   Section 5: 셀러 계정 연계
   ======================== */
.seller-section {
  background: var(--light-teal-bg);
  padding: var(--section-pad);
}
.seller-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.seller-content .section-title {
  margin-bottom: 16px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.check-list li {
  font-size: 14px;
  color: #141415;
  padding-left: 26px;
  position: relative;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  font-size: 15px;
  background: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  top: 1px;
}
.seller-section .section-inner--two-col {
  gap: 40px;
}
.seller-img-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.seller-img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  border-radius: 12px;
}

/* ========================
   Section 6: 공간 타입
   ======================== */
.spaces-section {
  background: #022429;
  padding: var(--section-pad);
}
.spaces-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spaces-section .section-title {
  margin-bottom: 48px;
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.space-step-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.spaces-cards {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.spaces-cards::-webkit-scrollbar {
  display: none;
}
.space-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.space-icon {
  font-size: 52px;
  line-height: 1;
}
.space-label {
  font-size: 14px;
  color: #ddd;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.space-pin {
  font-size: 13px;
}

/* ========================
   Contact Section
   ======================== */
.contact-section {
  background: #fff;
  padding: var(--section-pad);
}
.contact-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-section .partner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

.contact-card {
  width: 100%;
  max-width: 940px;
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 20px;
  padding: 48px 48px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #57585a;
}
.required {
  color: var(--primary);
}
.form-input,
.form-textarea {
  border: 1px solid #dde2e8;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: "PretendardVariable", sans-serif;
  font-size: 14px;
  width: 95%;
  height: 44px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
}

.seller-input,
.form-textarea {
  border: 1px solid #dde2e8;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: "PretendardVariable", sans-serif;
  font-size: 14px;
  width: 95%;
  height: 44px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.seller-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
}
.seller-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
}

.form-textarea {
  resize: vertical;
  min-height: 200px;
}
.file-upload-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-upload-btn {
  background: #f1f8f9;
  color: var(--primary);
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.file-upload-btn:hover {
}
.file-input {
  display: none;
}
.file-name {
  font-size: 13px;
  color: #888;
}
.file-cancel-btn {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.file-cancel-img {
  width: 30px;
  height: 18px;
  object-fit: contain;
}
.mobile-br {
  display: none;
}
.form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.submit-btn {
  background: var(--primary);
  color: #fff;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 20px;
  border-radius: 12px;
  transition:
    background 0.2s,
    transform 0.15s;

  width: 127px;
  height: 56px;
}
.submit-btn:hover {
  background: #0090a4;
  transform: translateY(-1px);
}

.information-sec {
  background: #f5f5f5;
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e8ecf0;
  border-radius: 20px;
  padding: 48px 48px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  gap: 10px;
}
.information-title {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #151515;
}
.information-wrap {
  display: flex;
  gap: 10px;
}
.information-img {
  width: 28px;
  height: 28px;
}
.info-item {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  display: flex;
  color: #151515;
  font-size: 18px;
  gap: 10px;
  cursor: pointer;
}
.info-divider {
  color: #ccc;
  padding: 0;
}

/* ========================
   Modals
   ======================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: min(400px, 70vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.success-modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: min(400px, 70vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* 검증 모달 메시지 */
.modal-msg {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #141415;
  line-height: 1.5;
}

/* 성공 모달 체크 아이콘 */
.modal-check-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8f8fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.modal-title {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #141415;
  line-height: 1.4;
}
.modal-sub {
  font-family: "PretendardVariable", sans-serif;
  font-size: 16px;
  color: #9e9e9e;
  line-height: 1.8;
  text-align: center;
}

/* 확인 버튼 */
.modal-confirm-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}
.modal-confirm-btn.filled {
  background: var(--primary);
  color: #fff;
  justify-content: center;
}
.modal-confirm-btn:hover {
  opacity: 0.88;
}

/* ========================
   Footer
   ======================== */
.main-footer {
  background: #c8e0e2;
  color: #888;
}

.footer-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 52px 60px 40px;
}

/* Top row: logo+info left / nav right */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 310px;
  height: auto;
  object-fit: contain;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "PretendardVariable", sans-serif;
  font-size: 13px;
  color: #999;
  line-height: 1.8;
}

/* Nav links top-right */
.footer-nav {
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #888;
}
.sns-icon-wrap {
  display: flex;
  gap: 10px;
}

.sns-icon {
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.footer-nav a {
  color: #888;
  white-space: nowrap;
}
.stay-connected {
  font-size: 10px;
  text-align: end;
}
.footer-nav a:hover {
  color: var(--primary);
}

.footer-nav-sep {
  color: #bbb;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 28px 0;
}

/* Bottom row: disclaimer left / copyright right */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-family: "PretendardVariable", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  flex: 1;
}

.footer-copyright {
  font-family: "PretendardVariable", sans-serif;
  font-size: 13px;
  color: #aaa;
  white-space: nowrap;
  flex-shrink: 0;
}
.sub-page-title {
  font-weight: 700;
  font-family: "PretendardVariable", sans-serif;
  font-size: 22px;
  color: #00a0b6;
}

/* 반응형 */
@media (max-width: 1279px) {
  .solution-section,
  .flow-section,
  .custom-section,
  .seller-section,
  .spaces-section,
  .contact-section,
  .pain-section {
    padding: 40px 0;
  }
  .pain-card br {
    display: none;
  }

  .section-inner {
    padding: 0 40px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }

  .section-inner--two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .seller-img-wrap,
  .custom-img-wrap {
    justify-content: center;
  }
  .seller-section .section-inner--two-col {
    gap: 20px;
  }
  .pain-cards {
    padding: 30px;
    width: 80vw;
    grid-template-columns: 1fr;
  }
  .pain-cards,
  .solution-cards {
    grid-template-columns: 1fr;
  }
  .pain-card p {
    display: flex;
  }
  .mobile-flow-wrap {
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .solution-img {
    padding: 18px;
  }

  /* 맞춤형 서비스: 개별 이미지로 전환 */
  .custom-img-desktop {
    display: none;
  }
  .custom-img-responsive {
    display: flex;
    flex-direction: row;
  }
  .flow-step {
    display: flex;
    flex-direction: row;
  }

  /* 공간 타입: 3×2 그리드 */
  .spaces-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .space-step-img {
    max-width: 180px;
    margin: 0 auto;
  }

  /* 파트너십 문의 폼: 1열 */

  .pain-card {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-steps {
    display: grid;
    gap: 12px;
    padding: 20px;
  }
  .flow-arrow {
    display: none;
  }
}

/* 모바일 */

@media (max-width: 768px) {
  :root {
    --section-pad: 56px 0;
  }
  .main-header {
    height: 60px;
  }
  .header-inner {
    padding: 0 20px;
  }
  .banner-img {
    width: 97px;
  }

  .section-inner {
    padding: 0 20px;
  }
  .mobile-flow-wrap {
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .hero-title {
    display: flex;
    flex-direction: column;
    font-size: 26px;
    gap: 8px;
  }
  .QR-img {
    width: 52px;
    height: 52px;
  }
  .section-title {
    font-size: 20px;
  }
  .hero-sub-title {
    font-size: 14px;
  }
  .section-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .seller-page-desc {
    font-size: 14px;
    margin-bottom: 32px;
    margin-top: 4px;
  }
  .partner-page-desc {
    font-size: 14px;
    margin-bottom: 32px;
    margin-top: 4px;
  }

  .mobile-br {
    display: block;
  }
  .footer-logo {
    width: 170px;
  }
  .contact-desc {
    font-size: 15px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .information-sec {
    grid-column: 1;
  }

  .contact-section {
    padding: 40px 20px;
  }
  .go-btn-flex {
    flex-direction: column;
    gap: 16px;
  }
  .partner-btn {
    margin-bottom: 0px;
    padding: 20px;
  }
  .seller-go-btn {
    padding: 20px;
  }

  .pain-cards,
  .solution-cards {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .solution-img {
    padding: 14px;
    height: 200px;
  }
  .solution-card-title-wrap {
    margin-top: 6px;
  }
  .pain-title {
    font-size: 20px;
  }

  .flow-steps {
    display: grid;
    gap: 8px;
    padding: 20px 0;
  }
  .flow-step-title {
    font-size: 18px;
  }
  .flow-step-desc {
    font-size: 14px;
  }
  .flow-arrow {
    display: none;
  }
  .flow-step {
    min-width: 150px;
    padding: 20px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: 1;
  }
  .section-badge {
    font-size: 14px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .footer-inner {
    padding: 36px 20px 28px;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-copyright {
    align-self: flex-end;
  }

  .hero-features li {
    padding: 0 8px;
    font-size: 13px;
  }

  .spaces-cards {
    gap: 12px;
  }
  .space-card {
    min-width: 120px;
  }
  .space-icon {
    font-size: 40px;
  }

  /* 공간 타입: 2×3 그리드 */
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .space-step-img {
    max-width: 154px;
  }

  .seller-section .section-inner--two-col {
    gap: 16px;
  }
  .seller-content {
    padding: 0 10px;
  }

  /* 맞춤형 서비스: 이미지 세로 스택 */
  .custom-img-responsive {
    flex-direction: column;
    align-items: center;
  }
  .kiosk-img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
  }
  .information-sec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .information-wrap {
    display: flex;
    flex-direction: column;

    gap: 20px;
  }
  .info-divider {
    display: none;
  }
  .flow-arrow {
    display: none;
  }
  .information-title {
    font-size: 18px;
  }
  .info-item {
    font-size: 14px;
  }
  .information-sec {
    padding: 32px;
  }
  .file-upload-wrap {
    display: block;
  }
  .file-name-wrap {
    display: flex;
    align-items: center;
    margin-top: 12px;
  }
  .form-textarea {
    min-height: 140px;
  }
  .bullet-list li {
    font-size: 13px;
    padding-left: 16px;
    white-space: nowrap;
  }

  .hero-section {
    padding-bottom: 32px;
  }
  .flow-section .section-title {
    margin-bottom: 0px;
  }
  .spaces-section .section-title {
    margin-bottom: 32px;
  }

  /* hero-circle-img: 모바일에서 이미지가 너무 작아 헤더 영역까지 닿지 않는 문제 */
  .hero-circle-img {
    min-width: 700px;
  }
}

/* ========================
   Contact Menu Cards
   ======================== */
.contact-brand-logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.contact-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-partner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00a0b6;
  color: #fff;
  border-radius: 12px;
  padding: 50px 70px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-partner-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-seller-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  color: #fff;
  border: 1px solid #00a0b6;
  border-radius: 12px;
  padding: 50px 70px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.contact-seller-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-menu-text {
  flex: 1;
}

.contact-menu-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.contact-seller-title {
  font-size: 28px;
  font-weight: 700;
  color: #00a0b6;
  margin-bottom: 4px;
}

.contact-menu-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.contact-menu-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-left: 4px;
}

.contact-seller-desc {
  font-size: 18px;
  color: #9e9e9e;
  font-weight: 500;
}

/* ========================
   Seller Join Section
   ======================== */
.sub-page-section {
  background: #fff;
  padding: 64px 80px;
}

.seller-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-badge {
  display: inline-block;
  background: #fff;
  color: #00a0b6;
  border: 1px solid #00a0b6;
  font-weight: 700;
  font-size: 18px;
  padding: 7px 18px;
  border-radius: 30px;
}

.seller-title {
  font-family: "PretendardVariable", "Noto Sans KR", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #151515;
  margin: 0;
}
.partner-title {
  font-family: "PretendardVariable", "Noto Sans KR", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.5;
  color: #151515;
  margin: 0;
}

.seller-desc {
  font-family: "PretendardVariable", "Noto Sans KR", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.32;
  color: #9e9e9e;
  margin: 0;
  letter-spacing: -2%;
}

.seller-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 878px;
  box-shadow:
    0px 4px 12px rgba(21, 21, 21, 0.12),
    1px 2px 6px rgba(21, 21, 21, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.email-group {
  grid-column: 1 / -1;
}

.form-label {
  font-family: "Pretendard";
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #57585a;
}

.required {
  color: #ff6b64;
}

.form-input {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 14px 12px;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #141415;
  background: #fff;
  transition: border-color 0.2s;
}

.form-input::placeholder {
  color: #9e9e9e;
}

.form-input:focus {
  outline: none;
  border-color: #00a0b6;
}

.seller-input {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 27px 12px;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #141415;
  background: #fff;
  transition: border-color 0.2s;
}

.seller-input::placeholder {
  color: #9e9e9e;
}

.seller-input:focus {
  outline: none;
  border-color: #00a0b6;
}

.email-check-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.email-input {
  flex: 1;
}

.email-check-btn {
  background: #fff;
  border: 1px solid #00a0b6;
  color: #00a0b6;

  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -3%;
  padding: 14px 12px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  height: 56px;
  min-width: 76px;
}

.email-check-btn:hover {
  background: #f0fafb;
}

.email-check-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  padding: 20px 0;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1.2px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked {
  border-color: #00a0b6;
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpolyline points='8,12 12,16 20,6' stroke='%2300a0b6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.checkbox-item label {
  font-family: "Pretendard";
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #57585a;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.checkbox-item label .required {
  color: #ff6b64;
}

.notice-box {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #57585a;
  margin-bottom: 32px;
}

.notice-box strong {
  color: #00a0b6;
  font-weight: 600;
}
.submit-button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seller-submit-btn {
  width: 100%;
  max-width: 127px;
  background: #00a0b6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: "PretendardVariable", "Noto Sans KR", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  height: 56px;
}

.seller-submit-btn:hover:not(:disabled) {
  background: #0090a4;
  transform: translateY(-1px);
}

.seller-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .sub-page-section {
    padding: 95px 20px;
  }
  .contact-section {
    padding: 95px 20px;
  }

  .contact-partner-wrap,
  .contact-seller-wrap {
    padding: 32px 18px;
  }

  .contact-menu-title {
    font-size: 22px;
  }
  .contact-seller-title {
    font-size: 22px;
  }
  .contact-menu-desc {
    font-size: 14px;
  }
  .contact-seller-desc {
    font-size: 13px;
  }
  .contact-menu-icon {
    width: 28px;
    height: 28px;
  }

  .seller-inner {
    gap: 0px;
  }
  .partner-inner {
    gap: 0px;
  }

  .seller-title {
    font-size: 24px;
  }
  .partner-title {
    font-size: 24px;
  }

  .seller-desc {
    font-size: 18px;
  }
  .how-header {
    gap: 8px;
  }

  .seller-card {
    padding: 32px 20px;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .email-check-row {
    gap: 12px;
    flex-direction: column;
  }

  .email-check-btn {
    min-width: unset;
    padding: 14px 12px;
    height: 44px;
  }
  .notice-box {
    text-align: start;
    word-break: auto-phrase;
  }
  .checkbox-row {
    flex-direction: column;
    gap: 16px;
  }
  .seller-input {
    padding: 12px;
  }
  .sub-page-title {
    font-size: 14px;
  }
  .submit-btn {
    padding: 0px;
  }
  .modal-check-circle {
    width: 40px;
    height: 40px;
  }
  .modal-title {
    font-size: 16px;
  }
  .modal-sub {
    font-size: 13px;
  }
  .success-modal-box {
    width: 90%;
  }
}

@media (max-width: 1279px) {
  .contact-desc {
    margin-bottom: 0px;
  }
}
