:root {
  color-scheme: light;
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-soft: #ccfbf1;
  --accent: #d97706;
  --accent-soft: #fffbeb;
  --ink: #0f172a;
  --ink-secondary: #334155;
  --muted: #64748b;
  --surface: #f8fafc;
  --surface-alt: #f1f5f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  --radius: 20px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Noto Sans KR',
    sans-serif;
  color: var(--ink);
  background: var(--card);
  line-height: 1.6;
  word-break: keep-all;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.nav-links {
  display: none;
  gap: 32px;
  color: var(--ink-secondary);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.nav-cta {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--ink-secondary);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.22);
}

.btn-lg {
  padding: 15px 26px;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 36px 0 12px;
  background:
    radial-gradient(circle at 85% 15%, rgba(13, 148, 136, 0.12), transparent 42%),
    radial-gradient(circle at 10% 80%, rgba(217, 119, 6, 0.06), transparent 35%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.hero-copy {
  max-width: 34rem;
}

.audience-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}

.audience-switch button {
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.audience-switch button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary-dark);
}

.hero-lead {
  margin: 0 0 28px;
  color: var(--ink-secondary);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-points {
  display: grid;
  gap: 10px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-point svg {
  flex: 0 0 20px;
  color: var(--primary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 0;
  padding: 20px 20px 28px;
  overflow: visible;
}

.hero-mockup {
  position: relative;
  width: min(100%, 400px);
  height: 300px;
}

.phone {
  position: absolute;
  width: 210px;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  box-shadow: var(--shadow);
}

.phone-settle {
  left: 0;
  top: 20px;
  transform: rotate(-6deg);
  z-index: 1;
}

.phone-jobs {
  right: 0;
  top: 0;
  transform: rotate(4deg);
  z-index: 2;
}

.phone-screen {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.phone-bar {
  padding: 14px 16px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.phone-body {
  padding: 14px;
}

.mock-kicker {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.mock-amount {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.mock-meta {
  margin: 0 0 12px;
  font-size: 0.72rem;
  color: var(--muted);
}

.mock-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--ink-secondary);
}

.mock-shift {
  padding: 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.mock-shift + .mock-shift {
  margin-top: 8px;
}

.mock-shift-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.mock-shift-top strong {
  font-size: 0.78rem;
}

.mock-chip {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.mock-chip.muted {
  background: var(--surface-alt);
  color: var(--muted);
}

.mock-pay {
  margin: 8px 0 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  max-width: 168px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  line-height: 1.35;
  box-sizing: border-box;
}

.hero-badge strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 2px;
}

.hero-badge span {
  display: block;
  color: var(--muted);
  word-break: keep-all;
}

.hero-badge.settle {
  left: 0;
  bottom: 0;
}

.hero-badge.trust {
  right: 0;
  top: 0;
}

/* Stats */
.stats {
  padding: 4px 0 48px;
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 24px 20px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.stat-label {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Showcase blocks */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase.reverse {
  direction: rtl;
}

.showcase.reverse > * {
  direction: ltr;
}

.showcase-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.showcase-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  letter-spacing: -0.03em;
}

.showcase-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
}

.feature-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.86rem;
}

.feature-list .icon {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* Flow */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.flow-step {
  position: relative;
  padding: 28px 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.flow-step::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  opacity: 0.35;
}

.flow-step:last-child::after {
  display: none;
}

.step-no {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.flow-step h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.case-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.case-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1rem;
}

.case-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.case-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pricing-role {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0 0 16px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pricing-list li {
  font-size: 0.9rem;
  color: var(--ink-secondary);
}

.pricing-list strong {
  color: var(--ink);
}

.pricing-list em {
  font-style: normal;
  color: var(--primary-dark);
  font-weight: 800;
}

.pricing-note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-breakdown {
  display: grid;
  gap: 8px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-secondary);
}

.pricing-row:first-child {
  border-top: none;
  padding-top: 0;
}

.pricing-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.pricing-row.highlight strong {
  color: var(--accent);
  font-size: 1rem;
}

.pricing-footnote {
  margin: 20px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

.refund-table-wrap {
  max-width: 760px;
  margin: 20px auto 0;
  overflow-x: auto;
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.refund-table caption {
  caption-side: top;
  text-align: left;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.refund-table th,
.refund-table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.refund-table th {
  background: var(--surface);
  font-weight: 700;
}

.refund-table tbody tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.7);
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  display: grid;
  gap: 6px;
}

.info-card strong {
  color: var(--ink-secondary);
}

.info-card a {
  color: var(--primary-dark);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.faq-q svg {
  flex: 0 0 20px;
  transition: transform 0.2s ease;
  color: var(--muted);
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-item.open .faq-a {
  display: block;
}

/* CTA */
.cta {
  padding: 80px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: 0 28px 60px rgba(13, 148, 136, 0.28);
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.cta-box p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 420px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.store-badge.disabled {
  opacity: 0.72;
  cursor: default;
}

.store-badge svg {
  flex: 0 0 22px;
}

.cta-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.cta-card p {
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.cta-card a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-form {
  display: grid;
  gap: 12px;
}

.inquiry-form-panel {
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.inquiry-form-panel .inquiry-field span {
  color: #334155;
  font-weight: 600;
}

.inquiry-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.inquiry-field {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
}

.inquiry-field span em {
  color: #dc2626;
  font-style: normal;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font: inherit;
}

.inquiry-field select {
  appearance: auto;
  cursor: pointer;
}

.inquiry-field select option {
  color: #0f172a;
  background: #fff;
}

.inquiry-field textarea {
  resize: vertical;
  min-height: 96px;
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
  color: #94a3b8;
}

.turnstile-widget:empty {
  display: none;
}

.inquiry-submit {
  justify-self: start;
  margin-top: 4px;
}

.inquiry-form-status {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.inquiry-form-status.ok {
  color: #15803d;
}

.inquiry-form-status.err {
  color: #b91c1c;
}

.announcement-bar {
  border-bottom: 1px solid rgba(13, 148, 136, 0.25);
  background: #ecfdf5;
  color: #115e59;
}

.announcement-bar-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}

.announcement-kicker {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 2px;
}

.announcement-copy {
  flex: 1;
  display: grid;
  gap: 4px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.announcement-copy strong {
  font-weight: 700;
}

.announcement-close {
  flex: 0 0 auto;
  border: none;
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
}

/* Footer */
.footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.92rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--primary-dark);
}

.footer-legal {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .showcase,
  .showcase.reverse,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .showcase.reverse {
    direction: ltr;
  }

  .hero-mockup {
    width: min(100%, 320px);
    height: 300px;
  }

  .phone {
    width: 170px;
  }

  .phone-settle {
    left: 0;
    top: 36px;
  }

  .phone-jobs {
    right: 0;
  }

  .hero-visual {
    order: -1;
    padding: 12px 8px 20px;
  }

  .hero-badge {
    display: none;
  }

  .stats-grid,
  .pricing-grid,
  .info-grid,
  .flow-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-step::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-grid,
  .pricing-grid,
  .info-grid,
  .flow-grid,
  .case-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .cta-box {
    padding: 32px 24px;
  }

  .nav-cta .btn-ghost {
    display: none;
  }
}
