@charset "UTF-8";

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff")
    format("woff");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "GMarketSans";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff")
    format("woff");
  font-weight: 700;
  font-display: swap;
}

:root {
  --primary-color: #377dcc;
  --hover-color: #2e6cb6;
  --accent-color: #ffd60a;
  --orange-color: #ffa659;
  --text-color: #1e1e1e;
  --gray-color: #8b8b8b;
  --font-light: 300;
  --font-medium: 500;
  --font-bold: 700;
  --font-family: "GMarketSans", system-ui, -apple-system, Segoe UI, Roboto,
    "Noto Sans KR", Arial, sans-serif;

  --brand: #377dcc;
  --border: #e3e3e3;
  --divider: #ebebeb;
  --gray-500: #a5a5a5;
  --gray-600: #a3a3a3;
  --shadow-neutral: rgba(0, 0, 0, 0.04);
  --shadow-brand: rgba(55, 125, 204, 0.18);
}

* {
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  margin: 0;
  background-color: #fff;
  color: #1e1e1e;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-family) !important;
}

header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

header img {
  height: 40px;
}

nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav a {
  text-decoration: none;
  font-weight: var(--font-medium);
  color: #1e1e1e;
  transition: all 0.3s ease;
  margin-right: 18px;
}

nav a:hover {
  color: var(--primary-color);
  transform: scale(1.08);
}

nav a:last-of-type {
  margin-right: 8px;
}

.login-btn,
.chat-btn {
  height: 40px;
  border-radius: 10px;
  font-weight: var(--font-bold);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, filter 0.2s ease;
}

.login-btn {
  width: 77px;
  background-color: var(--primary-color);
  color: #ffffff;
}

.login-btn:hover {
  background-color: var(--hover-color);
}

.chat-btn {
  width: 100px;
  background-color: #ffde59;
  color: #1e1e1e;
}

.chat-btn:hover {
  filter: brightness(0.95);
}

.hero {
  width: 100%;
  height: 768px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 60px;
  background: url("https://res.ramimomo.co.kr/rmmm/picktalk_files/picktalk_landing_page/홈페이지배너1.png")
    center/cover no-repeat;
  overflow: hidden;
  color: #1e1e1e;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-top: 20px;
  margin-left: 60px; /* 오른쪽으로 이동 */
}

.hero-label {
  width: 375px;
  height: 40px;
  background-color: #ffde59;
  color: #1e1e1e;
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: var(--font-bold);
  margin: 20px 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero h1 .brand {
  color: var(--primary-color);
}
.hero h1 .lead {
  color: #1e1e1e;
}

.hero p {
  font-size: 22px;
  font-weight: var(--font-medium);
  color: #1e1e1e;
  margin-top: 10px;
  max-width: 860px;
}

footer {
  background-color: #0a2540;
  color: white;
  text-align: center;
  padding: 40px 0;
}

/** pt_body_content_upload_automation */

.pt_body_content_upload_automation {
  margin: 0;
  background: #fff;
  color: var(--text-color);
  font-family: var(--font-family);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
}

.section-auto-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px; /* 좌우 간격 축소 */
  height: 768px;
  padding: 80px 100px;
  box-sizing: border-box;
}

.auto-left {
  width: 500px;
  height: 300px; /* 세로 길이 더 축소 */
  background-color: #eaf4ff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auto-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  transform: scale(1.02);
}

.auto-right {
  max-width: 600px;
}

.auto-label {
  width: 223px;
  height: 40px;
  background-color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 20px;
}

.auto-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.auto-title,
.auto-title span {
  color: #1e1e1e;
}

.auto-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35; /* 줄간격 더 축소 */
  margin-bottom: 28px;
  color: var(--text-color);
  white-space: pre-line;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 항상 3개 나란히 */
  gap: 20px;
}

.stat-card {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 16px 10px 6px; /* 상단 여백을 늘려 콘텐츠를 '조금' 아래로 */
  display: flex; /* 가운데 정렬을 위한 플렉스 컨테이너 */
  flex-direction: column;
  justify-content: center; /* 수직 가운데 기준 유지 */
  align-items: center; /* 수평 가운데 */
  min-height: 96px; /* 카드 최소 높이 유지 */
  text-align: center;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1; /* 세로 공간 절약 */
}

.stat-card p {
  font-size: 15px;
  font-weight: 500;
  margin-top: 2px; /* 위 여백 더 축소 */
  line-height: 1.2; /* 더 촘촘하게 */
}

.stat-blue {
  color: var(--primary-color);
}

.stat-orange {
  color: var(--orange-color);
}

.accent-blue {
  color: var(--primary-color);
}

/** pt_body_optimization */

.pt_body_optimization {
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
  background: #fff;
  color: var(--text-color);
  font-family: var(--font-family);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
}

.three-part-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 1380px; /* 높이 더 감소 */
  padding: 0;
  box-sizing: border-box;
  gap: 4%; /* 세로 간격 조금 더 축소 */
}

.intro-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* gap: 5%; */
  gap: 60px;
}

.intro-text {
  width: 45%;
}

.intro-image {
  width: 46%;
  background: #eaf4ff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(0.96);
}

.intro-label.blue {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
}

.intro-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.3;
}

.intro-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-color);
  margin-top: 12px;
  white-space: pre-line;
}

.intro-desc .accent-blue {
  color: var(--primary-color);
}

/** pt_body_automation_process */

.pt_body_automation_process {
  margin: 0;
  background: #fff;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 768px;
  flex-direction: column;
}

.auto-section {
  width: 1366px;
  padding: 60px 100px;
}

.auto-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.grid-box {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  text-align: center;
  width: 271px;
  height: 70px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.grid-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: var(--text-color);
  letter-spacing: -0.2px;
}

.grid-box p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.3px;
  color: var(--text-color);
  margin: 0;
  white-space: nowrap;
}

/* 그래프 카드 */
.graph-card {
  width: 1149px;
  height: 293px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 24px 40px;
  position: relative;
}

.graph-desc-top {
  font-size: 13px;
  color: var(--gray-color);
  margin-bottom: 8px;
  text-align: left;
}

svg {
  width: 100%;
  height: 180px;
}

.graph-desc-bottom {
  font-size: 13px;
  color: var(--gray-color);
  text-align: left;
  margin-top: 8px;
}

/** pt_body_sns_analysis */

.pt_body_sns_analysis {
  margin: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.sns-performance {
  width: 100%;
  max-width: 1366px;
  padding: 32px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab {
  width: 154px;
  height: 34px;
  border-radius: 9999px;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #1e1e1e;
  background: #fff;
  transition: all 0.3s ease;
}
.tab.active {
  background: var(--primary-color);
  color: #fff;
  border: none;
  transform: scale(1.05);
}

/* Layout */
.performance-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

/* Left description panel */
.desc-panel {
  flex: 1 1 45%;
  margin-top: 40px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-out {
  opacity: 0;
  transform: translateY(10px);
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.desc-pill {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 16px;
  margin-bottom: 22px;
}
.desc-title {
  font-size: 30px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 12px 0 10px;
}
.desc-list {
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.5;
  margin: 0 0 18px;
}
.desc-list .kw {
  font-weight: 700;
  color: var(--primary-color);
}
.desc-tip {
  font-size: 14px;
  font-weight: 500;
  color: #a3a3a3;
  line-height: 1.35;
  margin: 0;
}

/* Right graph area */
.graph-container {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.graph-panel {
  width: 100%;
  max-width: 600px;
  height: 257px;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 10px;
}
svg {
  width: 92%;
  height: 92%;
  font-size: 12px;
  fill: #8b8b8b;
}
rect {
  rx: 4;
  ry: 4;
  transition: transform 0.6s ease-out, height 0.6s ease-out, y 0.6s ease-out;
  transform-origin: bottom;
}

.summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 600px;
}
.summary-card {
  text-align: center;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 10px 5px;
  background: #fff;
}
.summary-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
.summary-label {
  font-size: 13px;
  color: var(--gray-text);
}

@media (max-width: 1024px) {
  .performance-content {
    flex-direction: column;
    align-items: center;
  }
  .desc-panel,
  .graph-container {
    flex: 1 1 100%;
    max-width: 90%;
  }
  .graph-panel,
  .summary {
    max-width: 90%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tab,
  .desc-panel,
  .graph-container,
  rect {
    transition: none !important;
    animation: none !important;
  }
}

/** pt_body_user_review */

.pt_body_user_review {
  font-family: "GMarketSans", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.reviews-section {
  width: 100%;
  min-height: max(768px, 100vh);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  gap: 24px;
}

.reviews-title {
  font-family: "GMarketSans", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #1e1e1e;
  margin: 0;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  justify-items: center;
  width: 100%;
  max-width: 960px;
}

figure {
  position: relative;
  width: 260px;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #eee;
}

figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 12px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.4;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-text {
  font-family: "GMarketSans";
  font-weight: 500;
  color: #333;
  margin: 0 0 4px 0;
  white-space: normal;
}

.reviewer {
  font-family: "GMarketSans";
  font-weight: 300;
  font-size: 12px;
  color: #666;
  margin: 0;
}

/** pt_product_price */

/* Layout */
.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}
.header_price {
  text-align: center;
  margin-bottom: 32px;
}
.header_price h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
}
.header_price p {
  margin: 0;
}
.header_price p strong {
  color: var(--brand);
  font-weight: 700;
  display: block;
}
.header_price p span {
  color: var(--text);
  font-weight: 500;
  display: block;
}

.grid_price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .grid_price {
    grid-template-columns: 425px 435px;
    column-gap: 5%;
    justify-content: center;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px var(--shadow-neutral);
  padding: 20px;
}
.card h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
}

/* Left: 기본 요금제 */
.price-display {
  text-align: center;
  margin-bottom: 12px;
}
.price-display .monthly {
  font-size: 22px;
  font-weight: 700;
}
.price-display .yearly {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-500);
}

.feature-table {
  border-top: none;
  border-bottom: none;
  padding-top: 12px;
  margin-bottom: 16px;
}
.feature-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid var(--divider);
}
.feature-row:last-child {
  border-bottom: none;
}
.feature-row .l {
  font-weight: 500;
}
.feature-row .r {
  color: #333;
  white-space: pre-line;
  padding-left: 8px;
}

.calc-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  max-width: 386px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  width: 100%;
}
.row.bold {
  font-weight: 700;
}
.row span:first-child {
  text-align: left;
}
.row span:last-child {
  text-align: right;
}

/* Totals */
.total {
  border-top: 1px solid var(--divider);
  margin-top: 8px;
  padding-top: 8px;
  width: 100%;
}
.total-month {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.label-sum {
  font-weight: 700;
  color: #1e1e1e;
  text-align: left;
}
.amount-wrap {
  text-align: right;
}
.amount-month {
  font-size: 16px;
  font-weight: 700;
  color: #1e1e1e;
}
.amount-year {
  font-size: 12px;
  font-weight: 700;
  color: #a3a3a3;
  margin-top: 2px;
}

.btns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: center;
  align-items: center;
}
.btn {
  width: 164px;
  height: 36px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.btn.primary {
  background: var(--brand);
  color: #fff;
  border: none;
}
.btn.outline {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(55, 125, 204, 0.25);
}
.btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 4px rgba(55, 125, 204, 0.35);
}

/* Right: 플러스 팩 */
.pack-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.pack-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-neutral);
  padding: 16px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pack-card.selected {
  transform: scale(1.01);
  border-color: var(--brand);
  box-shadow: 0 4px 12px var(--shadow-brand);
}
.pack-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: baseline;
  column-gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 4px;
}
.divider-v {
  width: 1px;
  height: 18px;
  background: var(--divider);
  margin: 0 6px;
  align-self: baseline;
}
.price-label {
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-self: end;
}
.suffix {
  font-size: 12px;
  color: var(--gray-500);
  margin-left: 2px;
}
.features {
  grid-column: 1 / -1;
  padding-left: 0;
  margin: 6px 0 0;
}
.features li {
  line-height: 1.5;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

/* 안내문구: 기본 요금제 카드 밖, 아래 (요청: 조금 위로 & 14px) */
.note-out {
  margin-top: 0px;
  position: relative;
  top: -8px;
  color: #a3a3a3;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .grid_price > aside.card {
    grid-column: 2;
    grid-row: 1;
  }
  .note-out {
    grid-column: 1;
    grid-row: 2;
  }
}

/* 선택 체크 아이콘 */
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #c9c9c9;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
}
.pack-card.selected .check {
  border-color: var(--brand);
  background: var(--brand);
}
.check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  opacity: 0;
}
.pack-card.selected .check svg {
  opacity: 1;
}

/* ===== 잔잔한 등장 애니메이션 (선택 행) ===== */
.fade-enter {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
}

/** pt_product_price_modal  */
.price_button {
  cursor: pointer;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.price_button:hover {
  transform: scale(1.04);
  opacity: 0.95;
}
.btn-monthly {
  background-color: #377dcc;
  color: #fff;
}
.btn-yearly {
  background-color: #ffde59;
  color: #1e1e1e;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(1px);
  animation: fadeIn 0.3s ease;
}
.modal {
  width: 290px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  text-align: center;
  animation: popIn 0.35s ease forwards;
}
.modal.hide {
  animation: fadeOut 0.25s ease forwards;
}
.modal input {
  width: 250px;
  height: 40px;
  border: 1px solid #dedede;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  margin: 8px auto 12px auto;
  color: #1e1e1e;
  display: block;
}
.modal input::placeholder {
  color: #a3a3a3;
}
.modal input:-webkit-autofill,
.modal input:-webkit-autofill:hover,
.modal input:-webkit-autofill:focus,
.modal input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #1e1e1e !important;
}
.modal input {
  autocomplete: off;
  autocorrect: off;
  autocapitalize: off;
  spellcheck: false;
}
.modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  width: 250px;
  margin: 0 auto;
}
.modal-buttons button {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.modal-buttons button:hover {
  transform: scale(1.03);
}
.cancel-btn {
  border: 1px solid #dedede;
  background: #fff;
  color: #1e1e1e;
}
.pay-btn {
  border: 2px solid #377dcc;
  background: #fff;
  color: #377dcc;
}
.login-after-pay-btn {
  border: 2px solid #377dcc;
  background: #fff;
  color: #377dcc;
}
/* === TOAST (상단 중앙, 아래에서 위로 등장) === */
.toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 90; /* 모달 오버레이(z-60) 위 */
  pointer-events: none; /* 클릭 방해 방지 */
  background: rgba(55, 125, 204, 0.9);
  border-radius: 10px;
  width: 500px;
  height: 85px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0;
}
.toast.show {
  animation: toastSlideIn 0.5s ease forwards;
}
.toast.hide {
  animation: toastFadeOut 0.3s ease forwards;
}
.toast .highlight {
  color: #ffde59;
}
.toast-inner {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.toast-inner > * {
  margin: 0;
}
.accent {
  color: #377dcc;
}

/* animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* 아래에서 위로 살짝 올라오며 등장 */
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* 이동 없이 심플 페이드아웃 */
@keyframes toastFadeOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
}

.pt_product_price_modal {
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #1e1e1e;
  gap: 20px;
}

.pt_product_price_modal.overlay {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.pt-plan-modal {
  width: 320px;
  padding: 28px 24px 24px;
  border-radius: 18px;
  border: 1px solid #dbe2ec;
  background: radial-gradient(circle at top, #ffffff 10%, #f3f6fb 90%);
  box-shadow: 0 24px 40px rgba(15, 35, 95, 0.2);
}
.pt-plan-modal .plan-copy {
  text-align: center;
  margin-bottom: 20px;
}
.pt-plan-modal .modal-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111322;
}
.pt-plan-modal .modal-price {
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 14px;
}
.pt-plan-modal .modal-guide {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #6b7280;
}
.plan-form {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(221, 226, 234, 0.9);
  margin-bottom: 18px;
}
.plan-form .plan-input {
  width: 100%;
  height: 44px;
  border: 1px solid #d7dce5;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #111322;
  margin-bottom: 12px;
  background: #f9fbff;
}
.plan-form .plan-input::placeholder {
  color: #9ca3af;
}
.plan-form .plan-input:last-child {
  margin-bottom: 0;
}
.phone-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.phone-row .phone-input {
  margin-bottom: 0;
  background: #fff;
}
.verify-btn {
  flex-shrink: 0;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #4e9bff, #347dff);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 0 18px;
  box-shadow: 0 10px 18px rgba(52, 125, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(52, 125, 255, 0.4);
}
.auth-btn {
  flex-shrink: 0;
  height: 44px;
  border-radius: 8px;
  /* border: 2px solid #347dff; */
  border: 2px solid #d7dce5;
  background: #fff;
  color: #347dff;
  font-weight: 700;
  font-size: 13px;
  padding: 0 18px;
  box-shadow: 0 8px 16px rgba(52, 125, 255, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auth-btn:hover {
  transform: translateY(-2px);
  background: #eff4ff;
  box-shadow: 0 12px 20px rgba(52, 125, 255, 0.25);
}
.auth_done {
  margin-top: 34px;
  flex-shrink: 0;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #347dff;
  font-weight: 700;
  font-size: 13px;
  padding: 0 18px;
  /* box-shadow: 0 8px 16px rgba(52, 125, 255, 0.18); */
  /* cursor: pointer; */
  /* transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; */
}
.plan-buttons {
  width: 100%;
  padding-top: 4px;
}
.plan-buttons button {
  height: 44px;
  border-radius: 10px;
  font-size: 15px;
}
.plan-buttons .pay-btn {
  border-width: 2px;
}
.plan-buttons .login-after-pay-btn {
  border-width: 2px;
}

.pt_product_payssam_modal {
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.payssam-modal {
  margin-top: 80px;
  width: min(1024px, 88vw);
  height: min(860px, 86vh);
  padding: 0;
  border-radius: 18px;
  border: 1px solid #dbe2ec;
  box-shadow: 0 32px 60px rgba(15, 35, 95, 0.35);
  background: #0f172a;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.payssam-modal iframe {
  flex: 1;
  width: 100%;
  border: none;
  background: #fff;
}
@media (max-width: 640px) {
  .payssam-modal {
    width: 95vw;
    height: 90vh;
    border-radius: 14px;
  }
}

/** 픽톡 css 끝 */

/* @font-face {
  font-family: DXBangtangoStd;
  src: url("../fonts/DXBangtangoStd-Regular.woff") format("woff");
}
@font-face {
  font-family: BMJua;
  src: url("../fonts/BMJUA_otf.woff") format("woff");
}

.BMJua {
  font-family: BMJua;
} */

.font-color-blue {
  color: #02b7ee;
}

.top_center {
  position: relative;
  top: 0;
  width: 100%;
  text-align: center;
}

.bottom {
  position: relative;
  bottom: 0;
  width: 100%;
}
