/* SmartSellUp Official Site */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #7c3aed;
  --text: #0f172a;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --success: #16a34a;
  --warning: #f59e0b;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --max-width: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  padding-top: var(--header-height);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

/* Header */
:root {
  --header-height: 79px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: box-shadow 0.25s;
  padding-top: env(safe-area-inset-top, 0);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.header-topline {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), #06b6d4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text strong {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.logo-icon {
  display: block;
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
}
.logo-icon--solo { height: 42px; width: 42px; }

.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.logo-img--wordmark {
  height: 36px;
  max-width: 180px;
}
.logo-img--footer {
  height: 36px;
  max-width: 180px;
}
.logo-img--mobile {
  height: 32px;
  max-width: 160px;
}
.logo--footer {
  margin-bottom: 12px;
  display: inline-flex;
}
.logo-text--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.logo--header { position: relative; }

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-item { position: relative; }

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-item.is-active .nav-trigger,
.nav-trigger:hover,
.nav-item.open .nav-trigger {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
}

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.nav-item.open .nav-chevron { transform: rotate(-135deg) translateY(2px); }

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
}
.nav-panel-wide { min-width: 520px; }
.nav-item.open .nav-panel,
.nav-item:hover .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-panel-head {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px 12px;
}

.nav-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.nav-panel-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.15s;
}
.nav-panel-link:hover {
  background: var(--bg-soft);
}
.nav-panel-link strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 2px;
}
.nav-panel-link em {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
}
.nav-panel-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-panel-link-row { margin-bottom: 2px; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
a.user-chip-link,
a.mobile-user-link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
a.user-chip-link:hover {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}
a.mobile-user-link:hover {
  background: var(--bg-soft);
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.user-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.user-meta strong { font-size: 0.82rem; }
.user-meta em {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
}

.btn-outline-primary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid rgba(37, 99, 235, 0.35);
}
.btn-outline-primary:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 10px 14px;
}
.btn-ghost:hover { color: var(--primary); background: var(--bg-soft); }

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.menu-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.is-open .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 99, 235, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(124, 58, 237, 0.08), transparent),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.hero-visual {
  position: relative;
}

.mock-window {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #fff;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot.red { background: #ef4444; }
.mock-dot.yellow { background: #f59e0b; }
.mock-dot.green { background: #22c55e; }

.mock-body {
  padding: 24px;
  min-height: 280px;
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 100%);
}

.mock-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.mock-tab {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.mock-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.mock-table {
  display: grid;
  gap: 8px;
}

.mock-row {
  display: grid;
  grid-template-columns: 40px 1fr 80px 70px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
}

.mock-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
}

.mock-status {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  text-align: center;
}

.mock-status.sale { background: #dcfce7; color: #166534; }
.mock-status.ready { background: #fef3c7; color: #92400e; }

/* Section common */
section {
  padding: 80px 0;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.3;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 48px;
}

.bg-soft {
  background: var(--bg-soft);
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-icon.blue { background: #dbeafe; }
.feature-icon.purple { background: #ede9fe; }
.feature-icon.green { background: #dcfce7; }
.feature-icon.orange { background: #ffedd5; }

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Market matrix */
.matrix-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}

.market-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.market-table th,
.market-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.market-table th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.market-table th:first-child,
.market-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.market-table tr:last-child td {
  border-bottom: none;
}

.status-yes {
  color: var(--success);
  font-weight: 700;
}

.status-no {
  color: #94a3b8;
  font-size: 0.85rem;
}

.status-wip {
  color: var(--warning);
  font-size: 0.85rem;
  font-weight: 700;
}

.matrix-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Workflow */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.workflow-step {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.workflow-step h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.workflow-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Detail blocks */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.detail-grid.reverse {
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.detail-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.feature-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
}

.feature-notice {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-section--wip {
  padding-top: 8px;
}

.detail-panel {
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
  border: 1px solid var(--border);
}

.detail-panel h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

/* Trial */
.trial-box {
  text-align: center;
  padding: 56px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.trial-box h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.trial-box p {
  margin: 0 0 28px;
  opacity: 0.9;
  font-size: 1.05rem;
}

.trial-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trial-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
}

.trial-stat span {
  font-size: 0.88rem;
  opacity: 0.85;
}

.trial-box .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.trial-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  text-align: left;
}
.download-step {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.download-step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.download-step p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-brand .logo-text strong {
  color: #fff;
}

.footer-brand p {
  margin: 0;
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.85rem;
}

.footer-business {
  margin-bottom: 14px;
  line-height: 1.9;
  color: #cbd5e1;
  font-size: 0.82rem;
  word-break: keep-all;
}

.footer-business-item strong {
  color: #e2e8f0;
  font-weight: 600;
}

.footer-business-sep {
  margin: 0 10px;
  color: #475569;
}

.footer-legal-links {
  margin: 0 0 10px;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-legal-links span {
  margin: 0 8px;
  color: #475569;
}

/* Mobile drawer — 헤더 아래에서 열림 (햄버거 버튼 유지) */
.mobile-overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 250;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  right: calc(-1 * min(320px, 85vw));
  width: min(320px, 85vw);
  max-width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: #fff;
  z-index: 260;
  transition: right 0.3s ease, visibility 0.3s;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 40px rgba(15, 23, 42, 0.12);
  box-sizing: border-box;
  visibility: hidden;
  pointer-events: none;
}
.mobile-drawer.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(37,99,235,0.05), transparent);
}
.mobile-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.mobile-user em { font-weight: 400; color: var(--text-muted); font-style: normal; }

.mobile-section { border-bottom: 1px solid var(--border); }
.mobile-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: none;
  background: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.mobile-section-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.mobile-section-toggle.open::after { transform: rotate(-135deg); }

.mobile-section-body {
  display: none;
  padding: 0 12px 12px;
}
.mobile-section-body.open { display: block; }
.mobile-section-body a {
  display: block;
  padding: 12px 14px;
  margin-bottom: 4px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mobile-section-body a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.mobile-actions {
  padding: 20px;
  display: grid;
  gap: 10px;
}

/* Responsive */

/* Intro page (PlayAuto Info style) */
.intro-hero {
  padding: 100px 0 80px;
  text-align: center;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 235, 0.1), transparent),
    var(--bg);
}
.intro-hero--has-bg,
.intro-hero--has-video {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: #0a0f1a;
  overflow: hidden;
}
.intro-hero--has-bg {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.intro-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.intro-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 26, 0.82) 0%,
    rgba(10, 15, 26, 0.62) 45%,
    rgba(10, 15, 26, 0.88) 100%
  );
}
.intro-hero--has-bg .intro-hero-inner,
.intro-hero--has-video .intro-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.intro-hero--has-bg .intro-eyebrow,
.intro-hero--has-video .intro-eyebrow {
  color: #67e8f9;
}
.intro-hero--has-bg h1,
.intro-hero--has-video h1 {
  color: #f8fafc;
}
.intro-hero--has-bg h1 strong,
.intro-hero--has-video h1 strong {
  color: #fff;
}
.intro-hero--has-bg .intro-lead,
.intro-hero--has-video .intro-lead {
  color: rgba(226, 232, 240, 0.9);
}
.intro-hero--has-bg .btn-outline,
.intro-hero--has-video .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.35);
}
.intro-hero--has-bg .btn-outline:hover,
.intro-hero--has-video .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.intro-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.intro-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.intro-hero .hero-actions {
  justify-content: center;
}
.intro-lead { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; }

/* Hero slider — Swiper 모션 + index.php 와 동일 .intro-hero */
.hero-main-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-main-slider .swiper-slide {
  height: auto;
  display: block;
}
.hero-main-slider .swiper-slide > .intro-hero {
  width: 100%;
}
.hero-main-slider .intro-hero--has-bg,
.hero-main-slider .intro-hero--has-video {
  min-height: var(--hero-slider-h, 520px);
}
.hero-main-slider.swiper-fade .swiper-slide {
  height: 100%;
}
@media (max-width: 768px) {
  .hero-main-slider .intro-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-main-slider .intro-hero--has-bg,
  .hero-main-slider .intro-hero--has-video {
    min-height: var(--hero-slider-h-m, 360px);
  }
  .hero-slider-prev,
  .hero-slider-next {
    display: none !important;
  }
}
.hero-main-slider .hero-slide--sequence .intro-hero-video {
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-main-slider .hero-slide--sequence.hero-slide--video-playing .intro-hero-video {
  opacity: 1;
}
.hero-main-slider .hero-slide--sequence.hero-slide--video-playing.intro-hero--has-bg {
  background-image: none !important;
}
.hero-slide-link-wrap {
  display: block;
  color: inherit;
  text-decoration: none;
}
.hero-slide-full-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-slide-custom {
  color: #f8fafc;
  font-size: 1rem;
  line-height: 1.6;
}
.hero-main-slider .hero-slide[style*="align-items: flex-start"] .hero-actions,
.hero-main-slider .hero-slide[style*="align-items:flex-start"] .hero-actions {
  justify-content: flex-start;
}
.hero-main-slider .hero-slide[style*="align-items: flex-end"] .hero-actions,
.hero-main-slider .hero-slide[style*="align-items:flex-end"] .hero-actions {
  justify-content: flex-end;
}
.hero-slider-pagination {
  z-index: 10 !important;
}
.hero-slider-prev,
.hero-slider-next {
  z-index: 10 !important;
  color: #fff !important;
  opacity: 0.8;
  background: none !important;
  border: none;
  box-shadow: none;
  width: auto !important;
  height: auto !important;
  margin-top: 0 !important;
  --swiper-navigation-size: 36px;
}
.hero-slider-prev::after,
.hero-slider-next::after {
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hero-slider-prev:hover,
.hero-slider-next:hover,
.hero-slider-prev:focus,
.hero-slider-next:focus {
  opacity: 1;
  background: none !important;
  outline: none;
}
.hero-slider-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
.hero-slider-pagination .swiper-pagination-bullet-active {
  background: #fff !important;
}
.intro-band { padding: 72px 0; overflow-x: clip; }
.intro-band-alt { background: var(--bg-soft); }
.intro-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.intro-band-grid.reverse { direction: rtl; }
.intro-band-grid.reverse > * { direction: ltr; }
.intro-band-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  margin: 0 0 16px;
}
.intro-band-text p { color: var(--text-muted); margin: 0 0 16px; }
.text-link { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.panel-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}
.panel-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }
.panel-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
  font-size: 0.68rem;
  font-weight: 700;
  vertical-align: middle;
}
.panel-list { list-style: none; padding: 0; margin: 0; }
.panel-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.panel-quote { margin: 0; color: var(--text-muted); line-height: 1.8; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-row--markets {
  gap: 10px;
}
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}
.chip-market {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.chip-market-icon {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
}
.chip-market-label {
  line-height: 1.2;
  white-space: nowrap;
}
.chip-market--smartstore { border-color: rgba(3, 199, 90, 0.25); }
.chip-market--coupang { border-color: rgba(0, 116, 233, 0.25); }
.chip-market--11st { border-color: rgba(244, 49, 66, 0.25); }
.chip-market--auction { border-color: rgba(230, 55, 64, 0.25); }
.chip-market--gmarket { border-color: rgba(0, 195, 98, 0.25); }
.intro-solutions { padding: 80px 0; }
.solution-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.solution-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.solution-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.solution-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.solution-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

/* YouTube section */
.youtube-section {
  padding: 72px 0;
  background: var(--bg-soft);
}
.youtube-section--help {
  padding: 0 0 40px;
  background: transparent;
}
.youtube-section-title {
  text-align: center;
  margin-bottom: 12px;
}
.youtube-section-desc {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 560px;
}
.youtube-grid {
  display: grid;
  gap: 24px;
}
.youtube-grid--single {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}
.youtube-grid--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.youtube-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}
.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-card h3 {
  margin: 0;
  padding: 14px 16px 6px;
  font-size: 1rem;
}
.youtube-card p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Pricing */
.pricing-hero {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-hero-desc {
  margin-inline: auto;
  max-width: 640px;
}
.pricing-period-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-period-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing-period {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 5px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 100%;
}
.pricing-period-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 72px;
  padding: 10px 16px 9px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.pricing-period-discount {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.pricing-period-btn:hover {
  color: var(--text);
}
.pricing-period-btn.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
}
.pricing-period-btn.is-active .pricing-period-discount {
  color: var(--accent);
}
.pricing-period-note {
  text-align: center;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 48px;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.pricing-card--featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.pricing-name {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
}
.pricing-price {
  margin: 0 0 8px;
  padding: 0;
  line-height: 1.15;
  white-space: nowrap;
}
.pricing-price-amount {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.pricing-price-unit {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing-total {
  min-height: 1.2em;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-total:not([hidden]) {
  display: block;
}
.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.pricing-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-feature-label {
  color: var(--text-muted);
}
.pricing-features strong {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}
.pricing-notes {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 800px;
  margin-inline: auto;
}
.pricing-notes h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.pricing-notes ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.pricing-notes a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 오른쪽 하단 고정 — 카카오톡 · TOP (모바일 메뉴·드로어보다 위) */
.fixed-bottom-buttons {
  position: fixed;
  bottom: 20px;
  right: max(20px, env(safe-area-inset-right, 0px));
  left: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  transform: translateZ(0);
}
.fixed-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: #333;
  padding: 0;
  pointer-events: auto;
}
.fixed-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.28);
}
.kakao-btn {
  background: #fee500;
}
.kakao-btn:hover {
  background: #fdd835;
}
.top-btn {
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.top-btn:hover {
  background: #334155;
}

@media (max-width: 768px) {
  .fixed-bottom-buttons {
    bottom: max(15px, env(safe-area-inset-bottom, 0px));
    right: max(15px, env(safe-area-inset-right, 0px));
  }
  .fixed-btn {
    width: 46px;
    height: 46px;
  }
}

/* Inner pages */
.page-main { padding: 48px 0 80px; }
.page-narrow { max-width: 760px; }
.page-board { max-width: var(--max-width); }
.page-title { margin: 0 0 12px; font-size: 2rem; }
.page-desc { color: var(--text-muted); margin-bottom: 28px; }
.sub-title { margin: 40px 0 16px; font-size: 1.2rem; }
.feature-section { margin-bottom: 40px; }
.feature-section h2 { margin-bottom: 12px; }
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
}
.form-card label { display: grid; gap: 6px; font-weight: 600; font-size: 0.9rem; }
.form-card input, .form-card select, .form-card textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}
.btn-block { width: 100%; }
.btn-sm {
  padding: 7px 14px;
  font-size: 0.84rem;
  border-radius: 8px;
}
.form-note { font-size: 0.88rem; color: var(--text-muted); }
.alert { padding: 14px 16px; border-radius: 10px; margin-bottom: 20px; }
.alert-error { background: #fef2f2; color: #b91c1c; }
.alert-success { background: #f0fdf4; color: #166534; }
.board-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.board-table th, .board-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.board-table th { background: var(--bg-soft); }
.badge { display: inline-block; padding: 2px 8px; border-radius: 6px; background: #dbeafe; color: var(--primary); font-size: 0.75rem; font-weight: 700; margin-right: 6px; }
.meta-line { color: var(--text-muted); font-size: 0.88rem; }
.content-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; line-height: 1.8; }
.content-box--flush { padding: 0; overflow: hidden; }
.notice-figure { margin: 0 0 20px; }
.notice-image {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.notice-youtube { margin: 0 0 20px; border-radius: var(--radius); overflow: hidden; }
.notice-inline-media { margin: 20px 0; }
.notice-text-block { margin: 12px 0; }
.notice-text-block:first-child { margin-top: 0; }
.notice-text { margin-top: 4px; }
.notice-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}
.notice-content .notice-text a { color: var(--primary); text-decoration: underline; }
.inquiry-item { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; background: #fff; }
.inquiry-head { display: flex; justify-content: space-between; gap: 12px; }
.status-pill { font-size: 0.75rem; padding: 4px 10px; border-radius: 999px; background: var(--bg-soft); }
.status-answered { background: #dcfce7; color: #166534; }
.answer-box { margin-top: 12px; padding: 12px; background: var(--bg-soft); border-radius: 8px; font-size: 0.92rem; }
.help-list { display: grid; gap: 10px; }
.help-item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.help-item:hover { border-color: var(--primary); }
.text-muted { color: var(--text-muted); }

/* 고객센터 허브 */
.support-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.support-hub-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.support-hub-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.support-hub-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.support-hub-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.trial-info-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.trial-info-box ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 0.92rem; }

.form-agreements {
  display: grid;
  gap: 10px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--border);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-check em {
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
}

.form-check a {
  color: var(--primary);
  text-decoration: underline;
}

.refund-notice-box {
  border-color: #fde68a;
  background: #fffbeb;
}

.refund-notice-text {
  max-height: 220px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.refund-agree-check {
  margin: 14px 0 12px;
  padding: 12px;
  border-radius: 8px;
  background: var(--bg-soft);
}

.legal-document {
  white-space: pre-wrap;
  font-size: 0.95rem;
}

.dashboard-policy-note {
  margin-bottom: 24px;
  border-color: #dbeafe;
  background: #f8fafc;
}

.mypage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.mypage-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.mypage-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.mypage-stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.mypage-stat-value em {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 4px;
}
.mypage-section {
  padding: 0;
  margin-bottom: 50px;
}
.mypage-section--last {
  margin-bottom: 0;
}
.mypage-section-note {
  margin: 8px 0 0;
}
.mypage-period-note {
  margin: 0 0 8px;
}
.mypage-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.mypage-meta-table {
  width: 100%;
  border-collapse: collapse;
}
.mypage-meta-table th,
.mypage-meta-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.mypage-meta-table th {
  width: 140px;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-soft);
}
.usage-meter-list {
  display: grid;
  gap: 14px;
}
.usage-meter-row {
  display: grid;
  gap: 6px;
}
.usage-meter-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}
.usage-meter-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-soft);
  overflow: hidden;
}
.usage-meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.usage-meter-fill.is-warn {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.mypage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 16px;
}
.mypage-month-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.board-table-wrap {
  overflow-x: auto;
}

.pay-hidden-form {
  display: none;
}

.pay-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.pay-method-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.pay-method-btn:not(:disabled):hover {
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}
.pay-method-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.pay-method-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--text);
}
.pay-method-brand-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pay-method-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pay-method-text strong {
  font-size: 1rem;
  line-height: 1.2;
}
.pay-method-text em {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.35;
}
.pay-method-btn--kakao .pay-method-icon {
  background: #fee500;
  color: #191919;
}
.pay-method-btn--naver .pay-method-icon {
  background: #03c75a;
  color: #fff;
}
.pay-method-btn--naver .pay-method-brand-text {
  font-size: 1.2rem;
  font-weight: 900;
}
.pay-method-btn--toss .pay-method-icon {
  background: #3182f6;
  color: #fff;
}
.pay-method-btn--toss .pay-method-brand-text {
  font-size: 0.88rem;
  text-transform: lowercase;
}
.pay-method-btn--card .pay-method-icon {
  background: #eff6ff;
  color: #2563eb;
}
.pay-pg-agree-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  line-height: 1.65;
}
@media (max-width: 520px) {
  .pay-method-grid {
    grid-template-columns: 1fr;
  }
}
.input-row { display: flex; gap: 8px; }
.input-row input { flex: 1; }

.member-auth-links {
  text-align: center;
  margin-top: 16px;
}
.member-recovery-userid {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
}
.member-recovery-userid code {
  font-size: inherit;
  background: transparent;
  color: var(--primary);
}

@media (max-width: 900px) {
  .youtube-grid--pair {
    grid-template-columns: 1fr;
  }

  .intro-band-grid,
  .solution-cards,
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .intro-band-grid.reverse { direction: ltr; }
  .support-hub,
  .download-steps { grid-template-columns: 1fr; }
  .mypage-grid { grid-template-columns: 1fr; }
  .nav-dropdown { display: none; }
  .hero-grid,
  .feature-grid,
  .detail-grid,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col h5 {
    font-size: 0.88rem;
    margin-bottom: 10px;
  }
  .footer-col a {
    font-size: 0.84rem;
    padding: 3px 0;
  }

  .hero-visual {
    order: -1;
  }

  .detail-grid.reverse {
    direction: ltr;
  }

  .nav-desktop,
  .header-cta .btn-ghost:not(.btn-admin-link),
  .header-cta .btn-outline-primary,
  .user-chip {
    display: none;
  }

  .header-cta .btn-admin-link {
    display: inline-flex;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 700;
  }

  .header-cta .btn-primary {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
    z-index: 5;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
    max-width: 100%;
  }

  .header-inner {
    gap: 12px;
  }

  section {
    padding: 56px 0;
  }
}
