:root {
  --wine-1: #2a1018;
  --wine-2: #5a2535;
  --wine-3: #3a1828;
  --wine-light: #7a3a4f;
  --pink: #c8607a;
  --pink-soft: #f5e0e6;
  --pink-deep: #b94a6e;
  --gold: #b8922a;
  --gold-soft: #f0e4c3;
  --gold-light: #d4b25a;
  --paper: #faf7f2;
  --paper-2: #f5ede4;
  --ink: #2a1018;
  --ink-soft: #5a4548;
  --ink-light: #8a7578;
  --border: #e8d8d8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; line-height: 1.6;
  scroll-behavior: smooth;
}
body { padding-top: 56px; }
.serif { font-family: 'Noto Serif KR', serif; }
a { text-decoration: none; color: inherit; }

/* ═════ 상단 네비게이션 ═════ */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 56px;
  background: rgba(253, 251, 247, 0.92); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 120; border-bottom: 1px solid #efe6da;
}
.nav-inner {
  max-width: 1100px; height: 100%; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; color: #2b2326; }
.nav-logo-flower { font-size: 16px; }
.nav-logo-text { font-size: 16px; font-weight: 500; letter-spacing: 1px; }
.nav-menu { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav-menu li a {
  display: block; padding: 8px 16px; color: #5a5052;
  font-size: 13px; font-weight: 500; border-radius: 6px;
  transition: all 0.2s; cursor: pointer;
}
.nav-menu li a:hover, .nav-menu li a.active { background: transparent; color: #c8607a; }

.nav-hamburger {
  display: none; width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px; flex-shrink: 0; z-index: 125;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px; background: white;
  margin: 4px auto; border-radius: 1px; transition: all 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 105;
}
.nav-overlay.show { display: block; }

/* ═════ 페이지 헤더 (서브 페이지용) ═════ */
.page-header {
  background: linear-gradient(180deg, #fdfbf7 0%, #f8f2e9 100%);
  color: #2b2326; padding: 60px 24px 70px; text-align: center;
  position: relative; overflow: hidden; border-bottom: 1px solid #efe6da;
}
.page-header::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  opacity: 0.30;
}
.page-header.rotation-header::before {
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.32;
}
.page-header-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-header .eyebrow {
  font-size: 11px; letter-spacing: 4px; color: var(--pink);
  font-weight: 700; margin-bottom: 14px; text-transform: uppercase;
}
.page-header h1 {
  font-family: 'Noto Serif KR', serif; font-size: 38px; font-weight: 500;
  letter-spacing: 3px; margin-bottom: 16px; line-height: 1.2; color: var(--pink);
}
.page-sub { font-size: 14px; opacity: 1; font-weight: 400; margin-bottom: 26px; line-height: 1.7; color: #5a5052; }

.page-cta-btn {
  display: inline-block; padding: 14px 32px;
  background: var(--pink); color: white;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: all 0.2s; box-shadow: 0 8px 20px rgba(200, 96, 122, 0.35);
}
.page-cta-btn:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200, 96, 122, 0.45); }
.page-cta-btn.rotation-cta {
  background: var(--gold); color: white; box-shadow: 0 8px 20px rgba(184, 146, 42, 0.35);
}
.page-cta-btn.rotation-cta:hover { background: #9c7a1c; box-shadow: 0 12px 28px rgba(184, 146, 42, 0.45); }

/* ═════ 섹션 공통 ═════ */
.section { padding: 70px 24px; background: white; }
.section.section-alt { background: var(--paper-2); }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow {
  font-size: 11px; letter-spacing: 4px; color: var(--gold);
  font-weight: 700; margin-bottom: 10px; text-transform: uppercase;
}
.section-head h2 { font-family: 'Noto Serif KR', serif; font-size: 26px; font-weight: 500; color: var(--wine-1); margin-bottom: 8px; }
.section-head .sub { font-size: 14px; color: var(--ink-soft); }

/* 진행 방식 스텝 */
.steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.step-card {
  background: var(--paper); border-radius: 12px; padding: 24px 22px;
  border: 1px solid var(--border);
}
.section.section-alt .step-card { background: white; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: white; font-weight: 700; font-size: 14px; margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(200, 96, 122, 0.3);
}
.step-num.rotation-num {
  background: linear-gradient(135deg, var(--wine-2), var(--wine-1));
  box-shadow: 0 4px 12px rgba(90, 37, 53, 0.3);
}
.step-card h4 { font-size: 15px; font-weight: 700; color: var(--wine-1); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

/* 가격 카드 */
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price-card {
  background: linear-gradient(135deg, white, var(--paper));
  border-radius: 14px; padding: 28px 24px; border: 1.5px solid var(--gold);
  text-align: center;
}
.price-card-rotation { background: linear-gradient(135deg, var(--paper), var(--gold-soft)); }
.price-card .who { font-size: 13px; font-weight: 600; color: var(--wine-2); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed var(--border); }
.price-card .amount { font-family: 'Noto Serif KR', serif; font-size: 32px; font-weight: 700; color: var(--wine-1); line-height: 1; margin-bottom: 6px; }
.price-card .amount .unit { font-size: 18px; color: var(--ink-soft); font-weight: 400; margin-left: 2px; }
.price-card .amount-sub { font-size: 11px; color: var(--ink-light); margin-top: 6px; }
.price-highlight {
  text-align: center; padding: 16px 22px; background: var(--pink-soft);
  border-radius: 10px; font-size: 14px; color: var(--wine-1);
  font-weight: 500; margin-bottom: 22px;
}
.price-highlight strong { color: var(--pink-deep); font-weight: 700; }
.discount-tag {
  display: inline-block; background: var(--gold); color: white;
  padding: 8px 18px; border-radius: 18px; font-size: 13px; font-weight: 600;
}

/* 할인 박스 (로테이션 상세 페이지) */
.discount-box {
  margin-top: 30px; padding: 28px 26px;
  background: linear-gradient(135deg, #fff8e7, #fef3d6);
  border: 1.5px solid var(--gold); border-radius: 14px;
  box-shadow: 0 6px 20px rgba(184, 146, 42, 0.12);
}
.discount-title {
  font-family: 'Noto Serif KR', serif; font-size: 18px; font-weight: 600;
  color: var(--wine-1); text-align: center; margin-bottom: 8px;
}
.discount-subtitle {
  text-align: center; font-size: 13px; color: var(--ink-soft);
  margin-bottom: 22px;
}
.discount-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 18px;
}
.discount-item {
  background: white; border-radius: 10px; padding: 16px 12px;
  text-align: center; border: 1px solid rgba(184, 146, 42, 0.3);
  transition: all 0.2s;
}
.discount-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 146, 42, 0.2);
  border-color: var(--gold);
}
.discount-icon { font-size: 26px; margin-bottom: 8px; line-height: 1; }
.discount-name {
  font-size: 13px; font-weight: 700; color: var(--wine-1); margin-bottom: 4px;
}
.discount-desc {
  font-size: 11px; color: var(--ink-soft); margin-bottom: 8px; line-height: 1.5;
  min-height: 32px;
}
.discount-amount {
  font-size: 16px; font-weight: 800; color: var(--pink-deep);
  font-family: 'Noto Serif KR', serif;
}
.discount-note {
  text-align: center; padding: 14px 16px;
  background: white; border-radius: 8px;
  font-size: 13px; color: var(--wine-1);
  border: 1px dashed var(--gold);
}
.discount-note strong { color: var(--pink-deep); font-weight: 700; }

/* ═════ 프로필 카드 예시 (1:1 프리미엄 페이지) ═════ */
.profile-cards-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.profile-card {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(42, 16, 24, 0.08);
  border: 1px solid var(--border);
  position: relative;
}

/* 예시 배지 (카드 우측 상단) */
.pc-example-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pink-deep);
  padding: 5px 12px; border-radius: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(200, 96, 122, 0.3);
}

/* 카드 헤더 (와인색 그라데이션) */
.pc-header {
  background: linear-gradient(135deg, var(--wine-1), var(--wine-2));
  color: white; padding: 22px 22px 24px; text-align: left;
}
.pc-header h3 {
  font-family: 'Noto Serif KR', serif; font-size: 18px;
  font-weight: 600; margin-bottom: 4px; letter-spacing: 0.5px;
}
.pc-header-sub {
  font-size: 11px; letter-spacing: 2px; opacity: 0.7;
  margin-bottom: 12px; text-transform: uppercase;
}
.pc-header-badge {
  display: inline-block; padding: 5px 14px;
  background: rgba(255, 192, 203, 0.2); border: 1px solid rgba(255, 192, 203, 0.4);
  border-radius: 16px; font-size: 11px; font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* 상단 4컬럼 (닉네임/년생/지역/키) */
.pc-top-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, #fdf5f7, white);
  border-bottom: 1px solid var(--border);
}
.pc-top-item {
  padding: 16px 8px; text-align: center;
  border-right: 1px solid var(--border);
}
.pc-top-item:last-child { border-right: none; }
.pc-top-label {
  font-size: 11px; color: var(--ink-light); margin-bottom: 4px; letter-spacing: 0.5px;
}
.pc-top-value {
  font-size: 16px; font-weight: 700; color: var(--wine-1);
  font-family: 'Noto Serif KR', serif;
}
.pc-top-sub {
  display: block; font-size: 10px; color: var(--ink-light);
  font-weight: 400; margin-top: 2px; font-family: 'Pretendard', sans-serif;
}

/* 섹션 타이틀 (분홍 배경) */
.pc-section-title {
  background: var(--pink-soft); color: var(--wine-1);
  padding: 10px 22px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
}

/* 아이템 (한 줄 vs 2컬럼) */
.pc-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
}
.pc-grid-2 .pc-item {
  border-right: 1px solid var(--border);
}
.pc-grid-2 .pc-item:nth-child(2n) { border-right: none; }
.pc-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: white;
}
.pc-item-full { display: block; }
.pc-item-label {
  font-size: 11px; font-weight: 600; color: var(--pink-deep);
  margin-bottom: 4px;
}
.pc-item-value {
  font-size: 12px; color: var(--ink); line-height: 1.55;
  white-space: pre-line;
}

.profile-card .pc-item:last-of-type { border-bottom: none; }

/* 여성 카드는 살짝 다른 톤 */
.profile-card-female .pc-header {
  background: linear-gradient(135deg, var(--pink-deep), var(--wine-2));
}

.profile-disclaimer {
  text-align: center; font-size: 12px; color: var(--ink-soft);
  margin-top: 24px; padding: 14px 22px;
  background: rgba(255, 255, 255, 0.7); border-radius: 10px;
  border: 1px dashed var(--border);
}
.profile-disclaimer strong { color: var(--pink-deep); font-weight: 700; }

/* 환불 박스 */
.refund-box { background: var(--paper); border-radius: 12px; padding: 28px 26px; border: 1px solid var(--border); }
.section.section-alt .refund-box { background: white; }
.refund-box h4 { font-size: 14px; font-weight: 700; color: var(--wine-1); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.refund-item { padding: 10px 0; }
.refund-item + .refund-item { border-top: 1px dashed var(--border); }
.refund-item .label { font-size: 13px; font-weight: 600; color: var(--wine-2); margin-bottom: 4px; }
.refund-item .desc { font-size: 12px; color: var(--ink-soft); line-height: 1.7; }
.refund-item .desc strong { color: var(--pink-deep); }
.refund-legal { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--border); font-size: 11px; color: var(--ink-light); line-height: 1.7; }

/* ═════ 하단 CTA ═════ */
.bottom-cta {
  background: linear-gradient(180deg, #f8f2e9 0%, #fdfbf7 100%);
  color: #2b2326; padding: 60px 24px; text-align: center; border-top: 1px solid #efe6da;
}
.bottom-cta-inner { max-width: 600px; margin: 0 auto; }
.bottom-cta h2 { font-family: 'Noto Serif KR', serif; font-size: 22px; font-weight: 500; margin-bottom: 22px; }

/* ═════ 문의 페이지 ═════ */
.contact-header { padding: 50px 24px 60px; }
.contact-header h1 { font-size: 32px; }
.contact-card {
  background: white; border-radius: 14px; padding: 32px 28px;
  border: 1px solid var(--border); text-align: center;
  box-shadow: 0 4px 16px rgba(42,16,24,0.04);
}
.contact-icon { font-size: 40px; margin-bottom: 12px; }
.contact-card h3 { font-size: 20px; color: var(--wine-1); margin-bottom: 6px; }
.contact-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 20px; }
.kakao-id-box {
  background: linear-gradient(135deg, #FEE500, #ffd966);
  padding: 18px; border-radius: 12px; margin: 0 auto 16px;
  max-width: 280px; box-shadow: 0 8px 20px rgba(254, 229, 0, 0.25);
  cursor: pointer; border: none; width: 100%; text-align: center;
  font-family: inherit; transition: all 0.2s;
  position: relative; overflow: hidden;
}
.kakao-id-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(254, 229, 0, 0.35);
}
.kakao-id-box:active { transform: translateY(0); }
.kakao-id-box.copied {
  background: linear-gradient(135deg, #d6ebde, #b5d9c2);
}
.kakao-id-label { font-size: 11px; color: rgba(0,0,0,0.6); margin-bottom: 4px; font-weight: 600; letter-spacing: 1px; }
.kakao-id-value { font-size: 22px; font-weight: 800; color: #3c1e1e; letter-spacing: 1px; }
.kakao-copied-msg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1e6d3e, #2d8a52);
  color: white; font-size: 16px; font-weight: 700;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.kakao-copied-msg.show { opacity: 1; }
.contact-tip { font-size: 12px; color: var(--ink-light); line-height: 1.7; }
.contact-email {
  display: inline-block; padding: 12px 24px;
  background: var(--paper); color: var(--wine-1);
  border-radius: 8px; font-weight: 600; font-size: 14px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.contact-email:hover { background: var(--pink-soft); border-color: var(--pink); }
.contact-cta-buttons {
  margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: 10px; border: 1px solid var(--border);
  margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
  padding: 16px 22px; cursor: pointer; list-style: none;
  font-size: 14px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 18px; color: var(--ink-light); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px dashed var(--border); }
.faq-body { padding: 16px 22px 20px; font-size: 13px; color: var(--ink-soft); line-height: 1.8; }
.faq-body p + p { margin-top: 8px; }
.faq-body strong { color: var(--wine-1); }

/* ═════ 공통 푸터 ═════ */
.footer {
  background: linear-gradient(180deg, #f8f2e9 0%, #fdfbf7 100%);
  color: #2b2326; padding: 60px 24px 40px; text-align: center; border-top: 1px solid #efe6da;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer h3 { font-family: 'Noto Serif KR', serif; font-size: 20px; font-weight: 500; margin-bottom: 10px; color: var(--pink-deep); }
.footer .sub { font-size: 13px; opacity: 1; margin-bottom: 26px; line-height: 1.7; color: #5a5052; }

.business-info {
  background: #fff; border: 1px solid #efe6da;
  border-radius: 10px; margin: 24px 0 22px; text-align: left; overflow: hidden;
}
.business-info-summary {
  padding: 14px 22px; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.2s; user-select: none;
}
.business-info-summary::-webkit-details-marker { display: none; }
.business-info-summary:hover { background: #faf6ef; }
.bi-summary-label { font-size: 12px; letter-spacing: 1px; opacity: 1; font-weight: 600; color: #5a5052; }
.bi-summary-arrow { font-size: 10px; opacity: 1; color: #9a8f90; transition: transform 0.3s; }
.business-info[open] .bi-summary-arrow { transform: rotate(180deg); }
.business-info[open] .business-info-summary { border-bottom: 1px dashed #e6dccd; }
.business-info-content { padding: 18px 22px; }
.business-info-grid { display: grid; grid-template-columns: 1fr; gap: 6px; margin-bottom: 16px; }
.bi-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; font-size: 11px; line-height: 1.6; }
.bi-label { opacity: 1; font-weight: 500; color: #9a8f90; }
.bi-value { opacity: 1; word-break: keep-all; color: #2b2326; }
.business-info-links { text-align: center; padding-top: 14px; border-top: 1px dashed #e6dccd; font-size: 11px; }
.business-info-links a { color: var(--pink-deep); padding: 4px 8px; }
.business-info-links a:hover { opacity: 1; text-decoration: underline; }
.business-info-links .sep { opacity: 1; color: #c9bdad; margin: 0 4px; }

.footer-bottom { border-top: 1px solid #efe6da; padding-top: 22px; font-size: 11px; opacity: 1; color: #9a8f90; line-height: 1.7; }
.footer-bottom p + p { margin-top: 4px; }

/* 약관 모달 */
.terms-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 1000; align-items: center; justify-content: center; padding: 20px;
}
.terms-overlay.show { display: flex; }
.terms-modal {
  background: white; border-radius: 14px; padding: 30px 28px;
  max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto;
  position: relative; color: var(--ink);
}
.terms-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border: none; background: var(--paper);
  border-radius: 50%; cursor: pointer; font-size: 14px;
}
.terms-close:hover { background: var(--pink-soft); color: var(--pink-deep); }
.terms-modal h3 { font-size: 22px; font-weight: 500; color: var(--wine-1); margin-bottom: 20px; padding-right: 40px; }
.terms-body { font-size: 13px; line-height: 1.8; color: var(--ink-soft); }
.terms-body h4 { font-size: 14px; font-weight: 700; color: var(--wine-1); margin-top: 18px; margin-bottom: 8px; }
.terms-body h4:first-child { margin-top: 0; }
.terms-body p { margin-bottom: 8px; }
.terms-body ul { padding-left: 18px; margin-bottom: 10px; }
.terms-body li { margin-bottom: 4px; }
.terms-body strong { color: var(--ink); }

/* ═════ 모바일 반응형 ═════ */
@media (max-width: 768px) {
  /* 모바일: 메뉴를 가로 한 줄로 고정 (햄버거 대신) */
  .nav-hamburger { display: none; }
  .nav-inner { gap: 8px; flex-wrap: nowrap; }
  .nav-logo { flex: 0 0 auto; justify-content: flex-start; padding-right: 0; }
  .nav-logo-text { font-size: 15px; }
  .nav-menu {
    position: static; left: auto; top: auto; bottom: auto;
    width: auto; max-width: none; height: auto;
    background: transparent; flex-direction: row; gap: 1px;
    padding: 0; box-shadow: none; overflow: visible; z-index: auto;
    margin-left: auto;
  }
  .nav-menu li { border: none; }
  .nav-menu li:first-child { border: none; }
  .nav-menu li a {
    padding: 6px 6px; border-radius: 6px; font-size: 11.5px;
    color: var(--wine-1); opacity: 1; white-space: nowrap;
  }
  .nav-menu li a.active { background: transparent; opacity: 1; border-left: none; padding-left: 6px; color: var(--pink-deep); font-weight: 700; }

  .page-header { padding: 50px 20px 60px; }
  .page-header h1 { font-size: 30px; letter-spacing: 2px; }
  .section { padding: 50px 20px; }
  .section-head h2 { font-size: 22px; }
  .steps-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .discount-grid { grid-template-columns: 1fr; gap: 10px; }
  .discount-item { padding: 14px 16px; display: flex; align-items: center; gap: 14px; text-align: left; }
  .discount-icon { font-size: 24px; margin-bottom: 0; flex-shrink: 0; }
  .discount-name { font-size: 13px; margin-bottom: 2px; }
  .discount-desc { font-size: 11px; min-height: auto; margin-bottom: 4px; }
  .discount-amount { font-size: 15px; margin-left: auto; }
  .discount-item > div:nth-child(2),
  .discount-item > div:nth-child(3) { flex: 1; }
  .discount-box { padding: 22px 18px; }
  .discount-title { font-size: 16px; }

  /* 프로필 카드 모바일 - 세로 1열 */
  .profile-cards-preview { grid-template-columns: 1fr; gap: 20px; }
  .pc-header { padding: 18px 18px 20px; }
  .pc-header h3 { font-size: 16px; }
  .pc-top-grid { grid-template-columns: repeat(4, 1fr); }
  .pc-top-item { padding: 12px 4px; }
  .pc-top-label { font-size: 10px; }
  .pc-top-value { font-size: 14px; }
  .pc-top-sub { font-size: 9px; }
  .pc-section-title { padding: 9px 18px; font-size: 11px; }
  .pc-item { padding: 11px 14px; }
  .pc-item-label { font-size: 10px; }
  .pc-item-value { font-size: 12px; }
  .profile-disclaimer { font-size: 11px; padding: 12px 16px; }

  .contact-cta-buttons { flex-direction: column; align-items: stretch; }
  .contact-cta-buttons .page-cta-btn { text-align: center; }
  .bi-row { grid-template-columns: 1fr; gap: 2px; padding: 6px 0; font-size: 11px; }
  .bi-row + .bi-row { border-top: 1px dashed rgba(255,255,255,0.08); }
  .bi-label { font-size: 10px; }
  .business-info-summary { padding: 12px 16px; }
  .business-info-content { padding: 14px 16px; }
  .business-info-links { font-size: 10px; }
  .terms-modal { padding: 24px 20px; }
}
