:root {
  --ink: #111111;
  --ink-2: #3f3f46;
  --muted: #71717a;
  --line: #e4e4e7;
  --paper: #f7f7f5;
  --wash: #efefed;
  --wash-2: #fafafa;
  --card: #ffffff;
  --accent: #0f766e;
  --accent-press: #0d5e58;
  --kakao: #fee500;
  --kakao-ink: #191919;
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --max: 980px;
  --wide: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 20px;
  --text-hero: clamp(2.05rem, 1.2rem + 3.6vw, 3.55rem);
  --text-h2: clamp(1.65rem, 1.15rem + 2vw, 2.55rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-size: clamp(16px, 0.35vw + 15.4px, 17px);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.02em;
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 80;
  background: var(--card);
  padding: 8px 12px;
  border-radius: 8px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 24px;
}

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

.promo-bar {
  background: var(--ink);
  color: #f4f4f5;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.promo-bar a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  min-height: 40px;
  padding: 8px 20px;
  text-align: center;
}

.promo-bar em {
  font-style: normal;
  font-weight: 650;
  color: #5eead4;
}

.promo-when {
  color: #a1a1aa;
}

.promo-go {
  font-weight: 650;
  color: #5eead4;
}

.promo-go::after {
  content: " →";
}

.nav {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 28px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.logo {
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  min-width: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 11px;
  border-radius: 8px;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(17, 17, 17, 0.05);
}

.nav-links a.is-active {
  color: var(--ink);
  background: rgba(17, 17, 17, 0.07);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  line-height: 1;
  transition: background 0.15s, transform 0.15s;
}

.nav-cta:hover {
  background: #2a2a2a;
}

.nav-cta:active,
.btn-pill:active {
  transform: scale(0.98);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--paper);
}

.mobile-panel.open {
  display: flex;
}

.mobile-panel a {
  font-size: 17px;
  font-weight: 500;
  padding: 10px 0;
  color: var(--ink);
}

.mobile-panel a[href="#contact"] {
  color: var(--accent);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
}

.hero {
  padding: 48px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1,
.spot-copy h2,
.block-head h2,
.contact-copy h2 {
  font-weight: 650;
  letter-spacing: -0.038em;
  line-height: 1.12;
}

.hero h1 {
  font-size: var(--text-hero);
}

.hero-line {
  display: block;
  animation: hero-line 0.7s var(--ease) both;
}

.hero-line:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes hero-line {
  from {
    opacity: 0;
    transform: translateY(0.35em);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-sub {
  max-width: 42ch;
  margin: 20px 0 0;
  font-size: clamp(16px, 0.4vw + 15px, 18px);
  line-height: 1.65;
  color: var(--ink-2);
}

.hero-sub + .hero-sub {
  margin-top: 8px;
}

.hero-who {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

.btn-pill:hover {
  background: #2a2a2a;
}

.btn-pill:hover .cta-arrow {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  color: var(--ink);
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(17, 17, 17, 0.04);
}

.text-link {
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-stage {
  background: var(--card);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  padding: 22px 22px 10px;
  box-shadow: 0 24px 50px -32px rgba(17, 17, 17, 0.35);
}

.stage-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.stage-cards li {
  padding: 16px 4px 16px 0;
  border-top: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}

.stage-cards li:hover {
  transform: translateX(4px);
}

.stage-cards span {
  display: block;
  font-size: 12px;
  font-weight: 650;
  color: var(--accent);
  margin-bottom: 4px;
}

.stage-cards strong {
  display: block;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.stage-cards em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    padding: 40px 0 28px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-sub {
    font-size: 16px;
  }
}

.trust {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding: 18px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: flex-start;
}

.trust-row p {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

#work {
  padding: 72px 0 48px;
}

#work,
#fit,
#compare,
#process,
#pricing,
#ops,
#faq,
#contact {
  scroll-margin-top: 104px;
}

.spot {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  background: var(--ink);
  color: #f4f4f5;
  border-radius: 24px;
  padding: 48px 44px 44px;
  overflow: hidden;
  margin-bottom: 72px;
}

.spot-cat {
  font-size: 12px;
  font-weight: 650;
  color: #99f6e4;
  margin-bottom: 10px;
}

.spot-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fafafa;
}

.spot-copy p {
  margin: 14px 0 20px;
  color: #a1a1aa;
  font-size: 16px;
}

.spot-copy .text-link {
  color: #5eead4;
}

.spot-frame {
  display: block;
  min-width: 0;
}

.browser {
  background: #18181b;
  border-radius: 14px;
  box-shadow: 0 22px 50px -24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.45s var(--ease);
}

.spot-frame:hover .browser {
  transform: translateY(-6px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #27272a;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52525b;
}

.browser-url {
  margin-left: 8px;
  flex: 1;
  background: #111111;
  border-radius: 6px;
  font-size: 11px;
  color: #a1a1aa;
  padding: 4px 10px;
}

.browser img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 58% 42%;
  display: block;
}

@media (max-width: 860px) {
  .spot {
    grid-template-columns: 1fr;
    padding: 32px 22px 24px;
    gap: 24px;
    margin-bottom: 48px;
  }
}

.block-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.block-head.left {
  text-align: left;
  margin-left: 0;
}

.block-head h2 {
  font-size: var(--text-h2);
}

.block-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

@media (hover: hover) {
  .work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -28px rgba(17, 17, 17, 0.45);
  }

  .work-card:hover .work-visual img {
    transform: scale(1.04);
  }
}

.work-visual {
  display: block;
  aspect-ratio: 16 / 11;
  padding: 0;
  overflow: hidden;
}

.work-visual img {
  transition: transform 0.7s var(--ease);
}

.mini {
  height: 100%;
  background: #fff;
  border-radius: 14px 14px 0 0;
  padding: 16px 18px;
}

.mini-nav {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.mini-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

.th-biz,
.th-immig,
.th-appeal,
.th-car,
.th-land,
.th-civil,
.th-total {
  padding: 0;
}

.th-biz {
  background: #0f172a;
}
.th-immig {
  background: #102a43;
}
.th-appeal {
  background: #172033;
}
.th-car {
  background: #0b1220;
}
.th-land {
  background: #10233f;
}
.th-civil {
  background: #f6f0e6;
}
.th-total {
  background: #132b46;
}

.th-civil img,
.th-land img,
.th-total img,
.th-immig img,
.th-car img,
.th-appeal img,
.th-biz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.th-civil img {
  object-position: 62% 42%;
}
.th-land img {
  object-position: center;
}
.th-total img {
  object-position: 58% 42%;
}
.th-immig img {
  object-position: 38% 28%;
}
.th-car img {
  object-position: 72% 48%;
}
.th-appeal img {
  object-position: 48% 42%;
}
.th-biz img {
  object-position: 50% 42%;
}

.work-body {
  padding: 20px 24px 24px;
}

.work-body h3 {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.work-body p {
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 15px;
}

.visa-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.visa-more p {
  font-size: 14px;
  color: var(--muted);
}

.visa-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visa-more-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--card);
  transition: border-color 0.2s, background 0.2s;
}

.visa-more-links a:hover {
  border-color: var(--ink);
}

.fineprint {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 28px;
}

@media (max-width: 720px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  #work {
    padding: 56px 0 24px;
  }
}

#fit {
  padding: 88px 0;
}

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

.fit-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.fit-card h3 {
  font-size: 18px;
  font-weight: 650;
  margin-bottom: 14px;
}

.fit-card li {
  font-size: 15px;
  color: var(--ink-2);
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line);
  position: relative;
}

.fit-card li:first-of-type {
  border-top: none;
  padding-top: 0;
}

.fit-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.fit-out li::before {
  color: var(--muted);
}

@media (max-width: 800px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
  #fit {
    padding: 64px 0;
  }
}

.compare {
  padding: 88px 0;
}

.compare-table {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.2fr;
  gap: 12px;
  padding: 16px 22px;
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.compare-head {
  border-top: none;
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
  background: var(--wash-2);
}

.compare-row span:first-child {
  font-weight: 650;
  color: var(--ink);
}

.compare-row span:last-child {
  color: var(--ink);
}

.compare-row span:nth-child(2) {
  color: var(--muted);
}

@media (max-width: 800px) {
  .compare-head {
    display: none;
  }
  .compare-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .compare-row span:nth-child(2)::before {
    content: "일반  ";
    font-weight: 650;
  }
  .compare-row span:last-child::before {
    content: "행정사  ";
    font-weight: 650;
    color: var(--accent);
  }
}

.need {
  padding: 100px 0;
}

.need .block-head {
  max-width: 640px;
}

.need-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  counter-reset: need;
}

.need-list li {
  counter-increment: need;
  background: var(--card);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  padding: 26px 24px;
}

.need-list h3 {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin: 8px 0 10px;
}

.need-list h3::before {
  content: "0" counter(need);
  display: block;
  font-size: 12px;
  font-weight: 650;
  color: var(--accent);
  margin-bottom: 8px;
}

.need-list p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.need .block-head p + p,
.need-list p + p,
#pricing .block-head p + p,
details p + p {
  margin-top: 8px;
}

@media (max-width: 800px) {
  .need-list {
    grid-template-columns: 1fr;
  }
  .need {
    padding: 72px 0;
  }
}

.page-legal .nav-cta {
  display: inline-flex;
}

.page-legal .burger {
  display: none;
}

.legal {
  padding: 56px 0 80px;
}

.legal .wrap {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.legal-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.legal h1 {
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.legal-lead {
  margin: 14px 0 40px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}

.legal h2 {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin: 32px 0 10px;
}

.legal p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

.page-legal footer {
  padding: 28px 0 40px;
}

@media (max-width: 800px) {
  .legal {
    padding: 40px 0 64px;
  }
}

#process {
  padding: 100px 0;
}

#process .block-head strong {
  color: var(--ink-2);
  font-weight: 650;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px 20px;
}

.steps li {
  min-width: 0;
  position: relative;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 32px;
  width: calc(100% - 32px + 20px);
  height: 1px;
  background: var(--line);
}

.step-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}

.step-body {
  margin-top: 18px;
}

.steps h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.steps p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.steps p + p {
  margin-top: 6px;
}

.steps strong {
  color: var(--ink-2);
  font-weight: 650;
}

.process-note {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.process-note strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps li:not(:last-child)::after {
    display: none;
  }

  .steps li {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 16px;
    position: relative;
    padding-bottom: 28px;
  }

  .steps li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: 0;
    width: 1px;
    background: var(--line);
  }

  .steps li:last-child {
    padding-bottom: 0;
  }

  .steps li:last-child::before {
    display: none;
  }

  .step-body {
    margin-top: 2px;
  }

  .steps h3 {
    font-size: 19px;
  }

  #process {
    padding: 72px 0;
  }
}

#pricing {
  background: var(--ink);
  color: #f4f4f5;
  padding: 100px 0;
}

#pricing .block-head p,
#pricing .fineprint {
  color: #a1a1aa;
}

#pricing .block-head h2 {
  color: #fafafa;
}

#pricing .offer-line {
  color: #5eead4;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #18181b;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.plan h3 {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
  min-height: 1.25em;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 22px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #99f6e4;
  background: transparent;
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 6px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.plan-main .plan-tag {
  color: #042f2e;
  background: #5eead4;
  border-color: #5eead4;
}

.plan-main {
  position: relative;
  z-index: 1;
  background: #1c2422;
  border: 2px solid #5eead4;
  padding: 32px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: scale(1.03);
}

.plan-main:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: #99f6e4;
}

.plan-main .plan-price {
  color: #fafafa;
}

.plan-main .plan-offer {
  font-size: 13px;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #5eead4;
  color: #042f2e;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.plan-cta:hover {
  background: #99f6e4;
}

.plan-cta:active {
  transform: scale(0.98);
}

.plan-main ul {
  margin-top: 18px;
  padding-top: 18px;
}


.plan-desc {
  color: #a1a1aa;
  font-size: 14px;
  margin: 8px 0 0;
  line-height: 1.5;
  min-height: 4.5em;
}

.plan-refs {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px 12px;
  min-height: 2.4em;
  margin: 12px 0 16px;
}

.plan-refs-empty {
  pointer-events: none;
}

.plan-refs a {
  font-size: 13px;
  font-weight: 600;
  color: #5eead4;
}

.plan-refs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.plan-price {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.plan-was {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #a1a1aa;
  text-decoration: line-through;
  text-decoration-color: #71717a;
  text-decoration-thickness: 1.5px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.plan-was-spacer {
  visibility: hidden;
  text-decoration: none;
}

.plan-price > span:not(.plan-was) {
  font-size: 14px;
  font-weight: 500;
  color: #a1a1aa;
  margin-left: 4px;
}

.plan-offer {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #5eead4;
  min-height: 1.3em;
}

.plan-offer-off {
  color: #71717a;
  font-weight: 500;
}

.plan-time {
  margin-top: 6px;
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.45;
  min-height: 2.9em;
}

.plan ul {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan li {
  font-size: 14px;
  color: #d4d4d8;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-extra {
  margin-top: 40px;
  padding: 28px 26px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #18181b;
  text-align: left;
}

.price-extra h3 {
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 14px;
}

.price-extra li {
  font-size: 14px;
  color: #d4d4d8;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.45;
}

.price-extra li:first-child {
  border-top: none;
  padding-top: 0;
}

.price-extra p {
  margin-top: 16px;
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .plans {
    grid-template-columns: 1fr;
  }
  .plan-main {
    order: -1;
    transform: none;
  }
  .plan-main:hover {
    transform: translateY(-4px);
  }
  #pricing {
    padding: 72px 0;
  }
  .plan-desc,
  .plan-refs {
    min-height: 0;
  }
  .plan-time {
    min-height: 0;
  }
}

#ops {
  padding: 100px 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec {
  background: var(--card);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.spec h3 {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.spec li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 9px 0;
  border-top: 1px solid var(--line);
  line-height: 1.45;
}

.spec li:first-child {
  border-top: none;
  padding-top: 0;
}

@media (max-width: 800px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
  #ops {
    padding: 72px 0;
  }
}

.ops-sub {
  margin-top: 56px;
}

.spec-grid.ways {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .spec-grid.ways {
    grid-template-columns: 1fr;
  }
}

#faq {
  padding: 100px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: start;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

details:first-of-type {
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--muted);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  max-width: 54ch;
}

@media (max-width: 800px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  #faq {
    padding: 72px 0;
  }
}

#contact {
  background: var(--wash);
  padding: 100px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy h2 {
  font-size: var(--text-h2);
}

.contact-copy p {
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 17px;
  max-width: 36ch;
}

.contact-points {
  margin: 0 0 22px;
}

.contact-points li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0 6px 14px;
  position: relative;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-form {
  background: var(--card);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

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

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--wash-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #d4d4d8;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
  outline: none;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b645c' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 18px;
  line-height: 1.45;
}

.consent a,
.foot-privacy a {
  color: var(--accent);
}

.consent a:hover,
.foot-privacy a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent input {
  margin-top: 3px;
}

.submit {
  width: 100%;
}

.form-done,
.form-error {
  display: none;
  font-size: 14px;
  margin-top: 12px;
}

.form-done.show,
.form-error.show {
  display: block;
}

.form-done {
  color: #2f6b3c;
}

.form-error {
  color: #b42318;
}

@media (max-width: 800px) {
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  #contact {
    padding: 72px 0 56px;
  }
  .contact-form {
    padding: 22px;
  }
}

footer {
  padding: 36px 0 88px;
  font-size: 12px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.foot-brand {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-2);
  margin-bottom: 12px;
}

.foot-biz {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.foot-privacy {
  max-width: 56ch;
  line-height: 1.5;
}

.foot-copy {
  margin-top: 16px;
}

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  border-top: 1px solid var(--line);
  background: var(--card);
  grid-template-columns: 1fr 1fr;
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
}

.mobile-sticky .m-kakao {
  background: var(--kakao);
  color: var(--kakao-ink);
}

@media (max-width: 860px) {
  .mobile-sticky {
    display: grid;
  }
  body {
    padding-bottom: 52px;
  }
}

.reveal {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .work-card:hover,
  .plan:hover,
  .steps li:hover,
  .stage-cards li:hover,
  .spot-frame:hover .browser {
    transform: none;
  }
}
