:root {
  --blue: #7a4bff;
  --light-blue: #f3e8ff;
  --text: #1f2937;
  --text-gray: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #fff;
  --navy-dark: #14161f;
  --navy: #7a4bff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Noto Sans KR', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav lang";
  align-items: center;
  gap: 12px 20px;
  padding: 12px 24px;
  min-height: 60px;
  position: relative;
}

.logo {
  grid-area: logo;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--blue);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 28px;
  width: 28px;
  margin-right: 8px;
}

.main-nav {
  grid-area: nav;
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-gray);
  transition: color 0.2s;
  white-space: nowrap;
  font-weight: 500;
}

.main-nav a:hover { color: var(--blue); }

.lang-switcher {
  grid-area: lang;
  justify-self: end;
  flex-shrink: 0;
}

.lang-switcher select {
  font-size: 0.8rem;
  color: var(--text-gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  background: var(--white);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  grid-area: lang;
  justify-self: end;
}

.hero {
  background: linear-gradient(160deg, #2d1b69 0%, #7a4bff 40%, #9B6DFF 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 80px 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

.hero-text { flex: 1; max-width: 600px; }
.hero-illustration { flex-shrink: 0; display: block; }
.hero-illustration svg { display: block; }

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero .cta {
  display: inline-block;
  background: #c4b5fd;
  color: #5b21b6;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  width: 100%;
  box-sizing: border-box;
}

.section-header { text-align: center; margin-bottom: 32px; }

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}

.section-header .sub {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.cat-tab {
  border: 2px solid var(--border);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  background: #fff;
  transition: 0.2s;
  display: inline-block;
}

.cat-tab.active,
.cat-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--light-blue);
}

.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-input {
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") 12px center no-repeat;
  color: var(--text);
  min-width: 240px;
  max-width: 400px;
  flex: 1;
}

.search-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(122, 75, 255, 0.12);
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}

.banner-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: block;
  color: inherit;
}

.banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.banner-card.sample-card { cursor: default; }
.banner-card.sample-card:hover { transform: none; box-shadow: none; }

.banner-img-wrap {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.sample-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 10px;
  border: 1px solid #fcd34d;
  z-index: 2;
}

.phone-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 3;
  white-space: nowrap;
}

.banner-img-wrap .emoji { font-size: 2rem; margin-bottom: 8px; }
.banner-img-wrap .banner-logo {
  max-width: 80px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}
.banner-img-wrap .company { font-weight: 900; font-size: 1.2rem; margin-bottom: 2px; }
.banner-img-wrap .tagline { font-size: 0.85rem; opacity: 0.88; margin-bottom: 8px; line-height: 1.4; }
.banner-img-wrap .detail { font-size: 0.85rem; opacity: 0.85; line-height: 1.45; }

.banner-info { padding: 12px 14px; }
.banner-info .cat-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-gray);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.banner-info .title { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.banner-info .country {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-top: 2px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 6px;
  overflow: hidden;
}

.country-link {
  font-size: 0.75rem;
  color: var(--blue);
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.country-sample-hint { font-size: 0.75rem; color: var(--text-gray); }

.banner-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-gray);
  grid-column: 1 / -1;
}

.no-results {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.load-more-wrap { text-align: center; margin-top: 28px; }

#load-more-btn {
  display: none;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

#load-more-btn:hover { background: #6d28d9; }

.who-section {
  background: var(--white);
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.who-section .section-header {
  max-width: 1280px;
  margin: 0 auto 32px;
}

.who-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.who-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.who-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.who-icon { font-size: 2rem; margin-bottom: 10px; }
.who-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.who-card p { font-size: 0.78rem; color: var(--text-gray); line-height: 1.5; }

.site-footer {
  background: #1f2937;
  color: #9ca3af;
  padding: 32px 24px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 2;
}

.footer-inner a { color: #d1d5db; }

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "logo lang menu"
      "nav nav";
    row-gap: 0;
    column-gap: 10px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    justify-content: flex-start;
  }

  .main-nav.nav-open { display: flex; }

  .main-nav a {
    padding: 10px 0;
    white-space: normal;
  }

  .lang-switcher {
    display: block;
    grid-area: lang;
    justify-self: end;
  }

  .hamburger-btn {
    display: block;
    grid-area: menu;
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .hero h1 { font-size: 1.6rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-illustration svg { width: 200px; height: auto; }

  .main-nav { font-size: 0.95rem; }

  .hamburger-btn { display: block; }
  .banner-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .search-input { min-width: 0; max-width: 100%; flex: 1 1 100%; }
  .about-feature-grid { grid-template-columns: 1fr; }
  .about-page .who-grid { grid-template-columns: 1fr; }
}

.main-nav a.nav-active { color: var(--blue); font-weight: 700; }

.page-hero-adv {
  background: linear-gradient(160deg, #2d1b69 0%, #7a4bff 40%, #9B6DFF 100%);
  color: #fff;
  text-align: center;
  padding: 56px 24px 40px;
  width: 100%;
}

.page-hero-adv h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-hero-adv p {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
  line-height: 1.6;
}

.adv-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 32px;
  align-items: start;
  width: 100%;
}

.adv-form-col {
  min-width: 0;
}

.adv-preview-col {
  position: sticky;
  top: 88px;
  min-width: 0;
}

.adv-preview-col h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.adv-preview-hint {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.adv-preview-card {
  pointer-events: none;
  max-width: 100%;
}

.adv-preview-card .banner-img-wrap {
  height: 220px;
}

.adv-cash-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .adv-layout { grid-template-columns: 1fr; }
  .adv-preview-col { position: static; order: 2; }
  .adv-form-col { order: 1; }
}

.adv-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.adv-form-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 16px;
}

.adv-form-block + .adv-form-block { margin-top: 28px; }

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-row-adv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.color-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.color-input-row input[type="color"] {
  width: 56px;
  height: 40px;
  padding: 2px;
  cursor: pointer;
}

.color-input-row input[type="text"] {
  width: 110px;
  font-family: ui-monospace, monospace;
}

.consent-box {
  margin-top: 20px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.consent-box p {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.consent-box label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 8px 0;
  cursor: pointer;
}

.consent-box input { margin-top: 3px; flex-shrink: 0; width: auto; }

.btn-submit-adv {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-submit-adv:hover { background: #6d28d9; }
.btn-submit-adv:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit-adv-secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #dbe4f0;
}
.btn-submit-adv-secondary:hover {
  background: #e2e8f0;
}

.adv-result {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.adv-result-ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.adv-result-err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 900px) {
  .form-row-adv { grid-template-columns: 1fr; }
}

/* ── Pricing ── */
.pricing-hero { max-width: none; }

.pricing-section {
  padding-top: 32px;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.pricing-grid-3 { margin-bottom: 24px; }

.price-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px 20px 24px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(122, 75, 255, 0.15);
}

.price-card.price-beta {
  border-color: #22c55e;
  background: #f0fdf4;
  max-width: 420px;
  margin: 0 auto 32px;
}

.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .badge.badge-green { background: #22c55e; }

.price-card h4 {
  font-size: 18px;
  color: var(--navy-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card .price {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.price-card .price-note {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 18px;
}

.price-card .price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  text-align: left;
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
}

.price-common {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.price-cta {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  margin-top: auto;
  background: var(--blue);
  color: #fff;
}

.price-cta:hover { background: #6d28d9; color: #fff; }

.pricing-usd-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-gray);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.pricing-included {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

.pricing-included h3 {
  text-align: center;
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.included-item {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.included-item .check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-cta-inline {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
}

.hero-cta-inline:hover { background: #6d28d9; color: #fff; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .included-grid { grid-template-columns: 1fr; }
}

/* ── About ── */
.about-page {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.about-page .who-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
}

.about-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 40px;
}

.about-intro a { color: var(--blue); font-weight: 600; }

.about-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  margin: 40px 0 20px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.about-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.about-feature-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.55;
}

.about-not-box {
  margin-top: 32px;
  padding: 24px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
}

.about-not-box h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #991b1b;
  margin-bottom: 12px;
}

.about-not-box ul {
  margin: 0;
  padding-left: 20px;
  color: #7f1d1d;
  font-size: 0.9rem;
  line-height: 1.8;
}

.about-steps {
  margin: 0;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
}

.about-steps a { color: var(--blue); font-weight: 600; }

.about-official-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--light-blue);
  border: 1px solid #ddd6fe;
  border-radius: 12px;
}

.about-official-box h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.about-official-box p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

.about-official-box a { color: var(--blue); font-weight: 600; }

.about-who-sub {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.about-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-cta-outline {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
}

.about-cta-outline:hover {
  background: var(--light-blue);
  color: var(--blue);
}

.mypage-wrap, .backlink-wrap { max-width: 860px; margin: 0 auto; }
.mypage-panel, .backlink-card { background: #fff; border: 1px solid #e8ecf1; border-radius: 14px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.mypage-msg { margin-top: 12px; font-size: .9rem; color: #64748b; }
.mypage-msg.is-error { color: #b91c1c; }
.mypage-msg.is-ok { color: #047857; }
.mypage-list-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.mypage-logout-btn, .mypage-back, .btn-secondary-adv { background: #f1f5f9; color: #334155; border: none; border-radius: 8px; padding: 10px 14px; cursor: pointer; text-decoration: none; display: inline-block; font-weight: 600; }
.mypage-list-item { border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px 16px; margin-bottom: 10px; cursor: pointer; }
.mypage-list-item:hover { border-color: var(--blue); }
.mypage-status-pill { display: inline-block; margin-left: 8px; font-size: 12px; background: #ede9fe; color: #5b21b6; padding: 2px 8px; border-radius: 999px; }
.mypage-list-meta { display: block; font-size: 12px; color: #94a3b8; margin-top: 4px; }
.mypage-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin: 16px 0 24px; }
.mypage-stat { background: #f8fafc; border-radius: 10px; padding: 12px; text-align: center; }
.mypage-stat strong { display: block; font-size: 1.25rem; }
.mypage-stat span { font-size: 12px; color: #64748b; }
.mypage-status { font-weight: 700; margin-bottom: 8px; }
.mypage-empty { color: #94a3b8; text-align: center; padding: 24px; }
.backlink-tabs, .backlink-type-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.backlink-tab { border: 1px solid #cbd5e1; background: #fff; border-radius: 999px; padding: 8px 14px; cursor: pointer; font-weight: 600; }
.backlink-tab.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.backlink-code { background: #0f172a; color: #e2e8f0; padding: 14px; border-radius: 8px; overflow-x: auto; font-size: 13px; }
.backlink-desc { color: #64748b; margin-bottom: 16px; }
.backlink-partners-list { display: grid; gap: 8px; margin-top: 12px; }
.backlink-partner-item { display: block; padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 8px; color: var(--blue); text-decoration: none; }
.legal-page { max-width: 760px; margin: 0 auto; line-height: 1.7; }
.legal-body p { margin-bottom: 1rem; }
.adv-payment-panel { margin-top: 24px; padding-top: 24px; border-top: 1px solid #e2e8f0; }
.adv-payment-panel h3 { margin: 0 0 8px; }
#paypal-button-container, #portone-button-container { margin-top: 12px; }

