html {
  scroll-behavior: smooth
}

/* 랜딩 구간만 타이포·배경 (전역 nav/footer와 충돌 방지) */
.gewriter-landing {
  font-family: 'Noto Sans KR', sans-serif;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.gewriter-landing *,
.gewriter-landing *::before,
.gewriter-landing *::after {
  box-sizing: border-box
}

body.page-index-landing {
  background: #fff
}

:root {
  --g: #1C8B5A;
  --gl: #EBF7F1;
  --gm: #6FD0A8;
  --gd: #0D5236;
  --t: #111827;
  --ts: #6B7280;
  --tt: #9CA3AF;
  --b: #E5E7EB;
  --bg2: #F9FAFB;
  --rl: #FEF0EB;
  --ro: #C2410C;
  --bl: #EFF6FF;
  --bd: #2563EB;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px
}

@media (max-width:640px) {
  .wrap {
    padding: 0 20px
  }
}

/* ─── HERO ─── */
.hero {
  padding: 80px 0 72px;
  text-align: center;
  background: #EEF8F3;
  position: relative;
  overflow: hidden
}

.hero::before {
  display: none
}

.hero-brand {
  margin-bottom: 28px
}

.hero .hero-brand h1 {
  margin: 0;
  font-size: 0;
  line-height: 0
}

.hero-brand .logo-image {
  max-height: 250px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  filter: drop-shadow(2px 4px 12px rgba(0, 0, 0, .12))
}

.hero-brand a {
  display: inline-block;
  border-radius: 12px
}

.hero-brand a:focus-visible {
  outline: 2px solid var(--g);
  outline-offset: 4px
}

.hero-search-wrap {
  max-width: 680px;
  margin: 0 auto 14px
}

.hero-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
  gap: 8px
}

.hero-search-icon {
  font-size: 16px;
  color: var(--ts);
  flex-shrink: 0
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--t);
  background: transparent
}

.hero-search input::placeholder {
  color: var(--tt)
}

.hero-search-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  background: var(--g);
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.hero-search-btn:hover {
  background: var(--gd)
}

.hero-note2 {
  font-size: 13px;
  color: var(--ts);
  margin-bottom: 6px
}

.hero-sub2 {
  font-size: 13px;
  color: var(--g);
  font-weight: 500
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gd);
  background: var(--gl);
  border: 1px solid var(--gm);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px
}

.h-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hero h1 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--t);
  letter-spacing: -2.5px;
  margin-bottom: 16px
}

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

.hero-sub {
  font-size: 18px;
  color: var(--ts);
  line-height: 1.8;
  margin: 0 auto 40px;
  max-width: 480px
}

.hero-sub strong {
  color: var(--t);
  font-weight: 600
}

.ibox-wrap {
  max-width: 580px;
  margin: 0 auto 12px
}

.ibox {
  display: flex;
  border: 2px solid var(--b);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
  transition: border-color .2s
}

.ibox:focus-within {
  border-color: var(--g)
}

.ibox input {
  flex: 1;
  font-size: 15px;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--t)
}

.ibox input::placeholder {
  color: var(--tt)
}

.ibtn {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--g);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .2s
}

.ibtn:hover {
  background: var(--gd)
}

.hero-note {
  font-size: 13px;
  color: var(--tt);
  margin-bottom: 16px
}

.demo-link-wrap {
  margin-bottom: 40px
}

.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--g);
  background: transparent;
  border: 1.5px solid var(--gm);
  border-radius: 100px;
  padding: 9px 22px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  text-decoration: none
}

.demo-link:hover {
  background: var(--gl);
  border-color: var(--g)
}

.demo-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2
}

.lbar {
  max-width: 580px;
  margin: 0 auto;
  height: 3px;
  background: var(--gl);
  border-radius: 100px
}

.lfill {
  height: 100%;
  background: var(--g);
  width: 0%;
  transition: width 1.4s ease;
  border-radius: 100px
}

.res-card {
  max-width: 580px;
  margin: 24px auto 0;
  border: 1px solid var(--b);
  border-radius: 16px;
  overflow: hidden;
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
}

.res-card.show {
  display: block;
  animation: fadeUp .4s ease
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.res-hd {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.res-url {
  font-size: 12px;
  font-family: monospace;
  color: var(--tt)
}

.res-ok {
  font-size: 12px;
  font-weight: 500;
  color: var(--gd);
  background: var(--gl);
  padding: 3px 12px;
  border-radius: 100px
}

.res-bd {
  display: flex
}

.res-scores {
  width: 210px;
  padding: 20px;
  border-right: 1px solid var(--b)
}

.res-issues {
  flex: 1;
  padding: 20px
}

.sc {
  margin-bottom: 16px
}

.sc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px
}

.sc-nm {
  font-size: 12px;
  color: var(--ts)
}

.sc-vg {
  font-size: 26px;
  font-weight: 700;
  color: var(--g)
}

.sc-vb {
  font-size: 26px;
  font-weight: 700;
  color: var(--bd)
}

.sc-tr {
  height: 6px;
  border-radius: 100px;
  background: var(--b)
}

.sc-bar {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease
}

.bar-g {
  background: var(--g)
}

.bar-b {
  background: var(--bd)
}

.iss-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--tt);
  letter-spacing: .5px;
  margin-bottom: 10px
}

.iss-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px
}

.tag {
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 100px;
  font-weight: 500;
  flex-shrink: 0
}

.tag-gap {
  background: var(--rl);
  color: var(--ro)
}

.tag-ok {
  background: var(--gl);
  color: var(--gd)
}

.iss-tx {
  font-size: 13px;
  color: var(--ts)
}

/* ─── MARQUEE ─── */
.mq {
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 14px 0;
  background: var(--bg2);
  overflow: hidden
}

.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mq 32s linear infinite
}

.mq-track:hover {
  animation-play-state: paused
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ts);
  padding: 0 26px
}

.mq-item::before {
  content: '✦';
  color: var(--g);
  font-size: 10px
}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ─── MECHANISM + SOLUTION ─── */
.mech-sec {
  padding: 100px 0;
  background: #fff
}

.mech-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--g);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px
}

.mech-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 16px
}

.mech-sub {
  font-size: 16px;
  color: var(--ts);
  line-height: 1.8;
  max-width: 560px
}

/* 조건 3개 카드 */
.mech-conds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px
}

.mech-cond {
  border: 1px solid var(--b);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s
}

.mech-cond:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .07)
}

.mech-cond-top {
  padding: 28px 28px 24px;
  flex: 1
}

.mech-cond-n {
  font-size: 11px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.mech-cond-problem {
  font-size: 17px;
  font-weight: 700;
  color: var(--t);
  line-height: 1.4;
  letter-spacing: -.3px;
  margin-bottom: 10px
}

.mech-cond-gap {
  font-size: 13px;
  color: var(--ro);
  background: var(--rl);
  border-radius: 8px;
  padding: 8px 12px;
  line-height: 1.6
}

.mech-cond-divider {
  height: 1px;
  background: var(--b);
  margin: 0
}

.mech-cond-bottom {
  padding: 20px 28px;
  background: var(--bg2)
}

.mech-cond-solve-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.mech-cond-solve {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.7
}

/* before / after + 가격 */
.mech-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center
}

.mech-compare {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--b);
  border-radius: 20px;
  overflow: hidden;
  flex: 1
}

.mech-compare-col {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0
}

.mech-compare-bad {
  background: #111827
}

.mech-compare-good {
  background: var(--gd)
}

.mech-compare-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: .5;
  color: #fff
}

.mech-compare-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 20px
}

.mech-compare-item {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500
}

.mech-compare-item.gap {
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .4)
}

.mech-compare-item.ok {
  background: rgba(111, 208, 168, .15);
  color: rgba(255, 255, 255, .9)
}

.mech-compare-result {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  text-align: center
}

.mech-compare-result.bad {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .3)
}

.mech-compare-result.good {
  background: rgba(111, 208, 168, .2);
  color: var(--gm)
}

.mech-compare-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 20px;
  color: var(--b);
  background: #fff;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b)
}

.mech-price-box {
  background: var(--gd);
  border-radius: 20px;
  padding: 32px 36px;
  text-align: center;
  min-width: 220px
}

.mech-price-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gm);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.mech-price {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px
}

.mech-price-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px;
  line-height: 1.6
}

.mech-price-btn {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  background: #fff;
  color: var(--gd);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s
}

.mech-price-btn:hover {
  background: var(--gl)
}

/* ─── HOOK BANNER ─── */
.hook-sec {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b)
}

.hook-sec::before {
  display: none
}

.hook-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center
}

.hook-left {
  display: contents
}

.hook-right {
  display: none
}

.hook-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gl);
  border: 1px solid var(--gm);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 32px
}

.hook-stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 2s infinite;
  flex-shrink: 0
}

.hook-stat-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--gd)
}

.hook-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 28px;
  text-align: center
}

.hook-title em {
  color: var(--g);
  font-style: normal
}

.hook-divider {
  width: 40px;
  height: 3px;
  background: var(--g);
  border-radius: 100px;
  margin: 0 auto 28px
}

.hook-sub {
  font-size: 18px;
  color: var(--ts);
  line-height: 1.9;
  text-align: center
}

.hook-sub strong {
  color: var(--t);
  font-weight: 700
}

/* ─── AI 인용 조건 (LLM 챗 스타일) ─── */
.cond-sec {
  background: var(--bg2);
  padding: 100px 0
}

.cond-header {
  text-align: center;
  margin-bottom: 56px
}

.cond-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--g);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.cond-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 16px
}

.cond-sub {
  font-size: 16px;
  color: var(--ts);
  line-height: 1.8
}

/* LLM 창 */
.cond-llm-wrap {
  max-width: 740px;
  margin: 0 auto
}

.cond-llm-window {
  background: #f7f8fa;
  border: 1px solid var(--b);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .10)
}

.cond-llm-titlebar {
  background: #fff;
  border-bottom: 1px solid var(--b);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.cond-llm-dots {
  display: flex;
  gap: 6px;
  position: absolute;
  left: 18px
}

.cond-llm-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%
}

.cond-llm-dot:nth-child(1) {
  background: #ff5f57
}

.cond-llm-dot:nth-child(2) {
  background: #ffbd2e
}

.cond-llm-dot:nth-child(3) {
  background: #28ca42
}

.cond-llm-titlebar-label {
  font-size: 12px;
  color: var(--tt);
  font-weight: 500
}

.cond-llm-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

/* 사용자 질문 버블 */
.cond-llm-q {
  display: flex;
  justify-content: flex-end
}

.cond-llm-q-bubble {
  background: #111827;
  color: #fff;
  border-radius: 18px 18px 4px 18px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  max-width: 78%
}

/* AI 응답 */
.cond-llm-ans {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.cond-llm-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
  color: #fff
}

.cond-llm-ans-inner {
  background: #fff;
  border: 1px solid var(--b);
  border-left: 3px solid var(--g);
  border-radius: 0 14px 14px 14px;
  padding: 22px 24px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.cond-llm-intro {
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 20px;
  line-height: 1.6
}

.cond-llm-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px
}

.cond-llm-item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.cond-llm-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gd);
  background: var(--gl);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: .5px
}

.cond-llm-item-body {}

.cond-llm-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 5px;
  line-height: 1.4
}

.cond-llm-item-desc {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.8
}

.cond-llm-cta {
  background: var(--gl);
  border-radius: 10px;
  padding: 14px 18px
}

.cond-llm-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gd);
  margin-bottom: 6px
}

.cond-llm-cta-desc {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.65
}

.cond-llm-warn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px
}

.cond-llm-warn-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0
}

.cond-llm-warn-icon {
  font-size: 13px;
  line-height: 1
}

.cond-llm-warn-label {
  font-size: 10px;
  font-weight: 700;
  color: #92400E;
  letter-spacing: .3px;
  line-height: 1
}

.cond-llm-warn-text {
  font-size: 12px;
  color: #78350F;
  line-height: 1.5;
  font-weight: 600
}

/* ─── GEO MECHANISM FULL ─── */
.mech-full-sec {
  background: #fff;
  padding: 100px 0
}

.mech-full-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 12px
}

.mech-full-sub {
  font-size: 17px;
  color: var(--ts);
  margin-bottom: 64px
}

.mech-full-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--b);
  border-radius: 24px;
  overflow: hidden
}

.mech-full-left {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 36px
}

.mech-full-cond {
  display: flex;
  gap: 20px;
  align-items: flex-start
}

.mech-full-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 1px;
  min-width: 24px;
  padding-top: 2px
}

.mech-full-cond-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--t);
  letter-spacing: -.3px;
  margin-bottom: 8px
}

.mech-full-cond-desc {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.8
}

.mech-full-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  background: var(--bg2);
  justify-content: center;
  min-height: 380px;
  position: relative
}

.mech-full-arrow-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--g), transparent)
}

.mech-full-arrow-badge {
  background: var(--g);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 16px 12px;
  border-radius: 16px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  box-shadow: 0 8px 32px rgba(28, 139, 90, .35);
  margin: 12px 0
}

.mech-full-right {
  padding: 52px 48px;
  background: var(--gd);
  display: flex;
  flex-direction: column;
  gap: 28px
}

.mech-full-solve-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -1.2px
}

.mech-full-solve-items {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.mech-full-solve-item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.mech-full-solve-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gm);
  margin-top: 5px;
  flex-shrink: 0
}

.mech-full-solve-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.mech-full-solve-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75
}

.mech-full-cta {
  font-size: 14px;
  color: var(--gm);
  font-weight: 600;
  line-height: 1.7;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15)
}

/* ─── VOC / LLM SECTION ─── */
.voc-sec {
  background: #fff;
  padding: 100px 0
}

.voc-title {
  font-size: 44px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 12px
}

.voc-sub {
  font-size: 17px;
  color: var(--ts);
  line-height: 1.8;
  margin-bottom: 64px
}

/* LLM 창 전체 */
.llm-wrap {
  max-width: 780px;
  margin: 0 auto
}

.llm-window {
  background: #f7f8fa;
  border: 1px solid var(--b);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1)
}

.llm-titlebar {
  background: #fff;
  border-bottom: 1px solid var(--b);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.llm-titlebar-dots {
  display: flex;
  gap: 7px
}

.llm-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%
}

.llm-dot:nth-child(1) {
  background: #ff5f57
}

.llm-dot:nth-child(2) {
  background: #ffbd2e
}

.llm-dot:nth-child(3) {
  background: #28ca42
}

.llm-titlebar-label {
  font-size: 12px;
  color: var(--tt);
  font-weight: 500
}

.llm-ai-logos {
  display: flex;
  align-items: center;
  gap: 6px
}

.llm-ai-logo {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--bg2);
  border: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ts);
  transition: all .2s
}

.llm-ai-logo:hover {
  background: #fff;
  color: var(--t);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.llm-ai-logo-text {
  font-size: 12px;
  font-weight: 800;
  color: var(--ts)
}

.llm-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

/* 사용자 질문 버블 */
.llm-question {
  display: flex;
  justify-content: flex-end
}

.llm-question-bubble {
  background: #111827;
  color: #fff;
  border-radius: 18px 18px 4px 18px;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 76%;
  font-weight: 400
}

/* AI 응답 */
.llm-answer {
  background: #fff;
  border: 1px solid var(--b);
  border-left: 3px solid var(--g);
  border-radius: 0 14px 14px 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.llm-answer-bold {
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  line-height: 1.65
}

.llm-answer-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.llm-answer-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ts);
  line-height: 1.6
}

.llm-answer-bullet::before {
  content: '•';
  color: var(--g);
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0
}

.llm-answer-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--gd);
  padding-top: 12px;
  border-top: 1px solid var(--b);
  margin-top: 4px
}

/* 질문 탭 */
.llm-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px
}

.llm-tab {
  font-size: 13px;
  font-weight: 500;
  color: var(--ts);
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 9px 16px 9px 38px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .07);
  letter-spacing: -.1px
}

.llm-tab::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat
}

.llm-tab:hover {
  border-color: var(--g);
  color: var(--t);
  box-shadow: 0 2px 10px rgba(28, 139, 90, .1)
}

.llm-tab.active {
  background: var(--gl);
  border-color: var(--g);
  color: var(--gd);
  font-weight: 600
}

.llm-tab.active::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C8B5A' stroke-width='2.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat
}

.steps-sec {
  padding: 100px 0;
  background: var(--bg2)
}

.steps-hd {
  text-align: center;
  margin-bottom: 80px
}

.steps-body {}

.step {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 72px 0;
  border-bottom: 1px solid var(--b)
}

.step:last-child {
  border-bottom: none
}

.step-n {
  flex: 0 0 88px;
  font-size: 100px;
  font-weight: 900;
  color: #d5ebe1;
  line-height: 1;
  user-select: none;
  flex-shrink: 0
}

.step-content {
  flex: 1;
  padding: 0 52px
}

.step .step-mock {
  flex: 1
}

.step.flip .step-mock {
  order: 1
}

.step.flip .step-content {
  order: 2
}

.step.flip .step-n {
  order: 3
}

.step-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--g);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.step-cat {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--gd);
  background: var(--gl);
  border: 1px solid var(--gm);
  border-radius: 100px;
  padding: 3px 12px;
  letter-spacing: .3px;
  margin-bottom: 16px
}

.step-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--t);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.25
}

.step-desc {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.85;
  margin-bottom: 22px
}

.step-outs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.step-out {
  font-size: 12px;
  color: var(--gd);
  background: #fff;
  border-radius: 100px;
  padding: 5px 14px;
  border: 1px solid var(--b)
}

.step-mock .mock {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  position: relative
}

.mock {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  position: relative
}

.mock-demo-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--g);
  border: none;
  border-radius: 100px;
  padding: 9px 18px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(28, 139, 90, .35);
  z-index: 10
}

.mock-demo-btn:hover {
  background: var(--gd);
  box-shadow: 0 6px 24px rgba(28, 139, 90, .45);
  transform: translateY(-1px)
}

.mock-demo-btn svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  stroke: none
}

.mock-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--b)
}

.mock-addr {
  flex: 1;
  font-size: 11px;
  font-family: monospace;
  color: var(--tt);
  background: #fff;
  border: 1px solid var(--b);
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.mock-body {
  padding: 20px
}

.m-lbl {
  font-size: 10px;
  font-weight: 500;
  color: var(--tt);
  letter-spacing: .7px;
  margin-bottom: 10px
}

.kw-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px
}

.kw {
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--b);
  color: var(--ts)
}

.kw.s {
  background: var(--gl);
  color: var(--gd);
  border-color: var(--gm)
}

.m-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px
}

.m-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 500;
  color: var(--tt);
  padding: 7px 8px;
  border-bottom: 1px solid var(--b)
}

.m-table td {
  padding: 8px 8px;
  border-bottom: 1px solid var(--b);
  color: var(--ts)
}

.m-table td:first-child {
  color: var(--t);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 13px
}

.m-table tr:last-child td {
  border-bottom: none
}

.vbar-wrap {
  width: 60px;
  height: 4px;
  background: var(--b);
  border-radius: 100px
}

.vbar {
  height: 100%;
  background: var(--gm);
  border-radius: 100px
}

.big-score {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px
}

.big-score.g {
  color: var(--g)
}

.big-score.b {
  color: var(--bd)
}

.score-track-lg {
  height: 8px;
  border-radius: 100px;
  background: var(--b);
  margin-bottom: 18px
}

.score-fill {
  height: 100%;
  border-radius: 100px
}

.fill-g {
  background: var(--g)
}

.fill-b {
  background: var(--bd)
}

.cl {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ci {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ts)
}

.art-card {
  border: 1px solid var(--b);
  border-radius: 12px;
  overflow: hidden
}

.art-hd {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--t);
  line-height: 1.4
}

.art-body {
  padding: 16px
}

.art-intro {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.75;
  margin-bottom: 14px
}

.art-q {
  font-size: 13px;
  font-weight: 500;
  color: var(--bd);
  margin-bottom: 4px
}

.art-a {
  font-size: 13px;
  color: var(--ts);
  line-height: 1.7;
  margin-bottom: 12px
}

.art-a:last-child {
  margin-bottom: 0
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.faq-item {
  border: 1px solid var(--b);
  border-radius: 12px;
  overflow: hidden
}

.faq-q {
  background: var(--bg2);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t);
  line-height: 1.5
}

.faq-a {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ts);
  line-height: 1.75
}

.meta-card {
  border: 1px solid var(--b);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px
}

.meta-hd {
  background: var(--bg2);
  border-bottom: 1px solid var(--b);
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 500;
  color: var(--tt);
  letter-spacing: .7px
}

.meta-val {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ts);
  line-height: 1.6
}

.meta-val strong {
  color: var(--t);
  font-weight: 500
}

.code-blk {
  font-size: 12px;
  font-family: monospace;
  color: #2563EB;
  background: var(--bl);
  border-radius: 12px;
  padding: 16px;
  line-height: 1.85;
  margin-top: 10px
}

.code-k {
  color: #1d4ed8;
  font-weight: 500
}

/* ─── VALUE ─── */
.val-sec {
  background: #0D1F17;
  padding: 96px 0
}

.val-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.val-badge {
  display: inline-flex;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 20px
}

.val-eyebrow {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 6px
}

.val-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px
}

.val-currency {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
  line-height: 1
}

.val-price-num {
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -4px
}

.val-price-unit {
  font-size: 16px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 20px
}

.val-hook {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-bottom: 32px
}

.val-hook strong {
  color: #fff;
  font-weight: 700
}

.val-compare {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  max-width: 360px
}

.val-cmp {
  flex: 1;
  padding: 16px 20px;
  text-align: center
}

.val-cmp-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .8px;
  margin-bottom: 6px
}

.val-cmp-before .val-cmp-price {
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  text-decoration: line-through
}

.val-cmp-after .val-cmp-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--gm)
}

.val-cmp-div {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch
}

.val-cmp-arrow {
  padding: 0 10px;
  color: rgba(255, 255, 255, .2);
  font-size: 13px
}

.val-inc-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gm);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px
}

.val-inc-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.val-inc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  transition: background .2s;
  cursor: default
}

.val-inc-item:hover {
  background: rgba(255, 255, 255, .09)
}

.val-inc-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(111, 208, 168, .25);
  border: 1px solid rgba(111, 208, 168, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gm);
  font-weight: 700;
  flex-shrink: 0
}

.val-inc-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4
}

.val-inc-step {
  font-size: 10px;
  font-weight: 700;
  color: var(--gm);
  margin-right: 8px
}

/* ─── PRICING SLIDER ─── */
.pricing-sec {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid var(--b)
}

.pricing-hd {
  text-align: center;
  margin-bottom: 52px
}

.pricing-calc {
  max-width: 680px;
  margin: 0 auto
}

.pc-slider-wrap {
  margin-bottom: 36px;
  padding: 0 0 8px
}

.pc-slider-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px
}

.pc-slider-plan {
  font-size: 14px;
  font-weight: 700;
  color: var(--t)
}

.pc-slider-plan span {
  color: var(--g)
}

.pc-slider-rec {
  font-size: 11px;
  font-weight: 700;
  color: var(--gd);
  background: var(--gl);
  border: 1px solid var(--gm);
  border-radius: 100px;
  padding: 3px 10px;
  display: none
}

.pc-slider-rec.show {
  display: inline-block
}

.pc-range-wrap {
  position: relative;
  padding: 0 4px;
  margin-bottom: 20px
}

.pc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: var(--b);
  outline: none;
  cursor: pointer;
  transition: background .2s
}

.pc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--g);
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(28, 139, 90, .35);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s
}

.pc-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(28, 139, 90, .45)
}

.pc-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--g);
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(28, 139, 90, .35);
  cursor: pointer
}

.pc-stops {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-top: 24px;
  align-items: flex-end
}

.pc-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer
}

.pc-stop-pages {
  font-size: 22px;
  font-weight: 900;
  color: var(--b);
  letter-spacing: -0.5px;
  transition: color .2s
}

.pc-stop-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--tt);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s
}

.pc-stop.active .pc-stop-pages {
  color: var(--g)
}

.pc-stop.active .pc-stop-name {
  color: var(--gd)
}

.pc-rec-tag {
  position: absolute;
  top: -10px;
  right: -18px;
  background: var(--g);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  transform: rotate(12deg);
  white-space: nowrap;
  line-height: 1.2;
  display: inline-block
}

.pc-result {
  border: 1.5px solid var(--b);
  border-top: 3px solid var(--g);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07)
}

.pc-result-top {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.pc-price-block {}

.pc-price-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ts);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.pc-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px
}

.pc-price {
  font-size: 56px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -3px;
  line-height: 1;
  transition: all .2s
}

.pc-price-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--ts)
}

.pc-bonus-pill {
  display: inline-flex;
  align-items: center;
  background: var(--gl);
  color: #27500a;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
  margin-bottom: 2px
}

.pc-result-bottom {
  display: none
}

.pc-btn-wrap {
  flex-shrink: 0
}

.pc-btn {
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  background: var(--g);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  white-space: nowrap
}

.pc-btn:hover {
  background: var(--gd)
}

.pricing-note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--tt)
}

.pricing-note strong {
  color: var(--g)
}

.pc-seg-wrap,
.pc-seg,
.pc-seg-btn,
.pc-seg-slider,
.seg-plan-name,
.seg-pages,
.seg-price,
.seg-rec-badge {
  display: none
}

/* ─── CTA BANNER ─── */
.cta-sec {
  background: #EEF8F3;
  padding: 96px 0;
  border-top: 1px solid var(--b)
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.cta-banner-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -2.5px;
  line-height: 1.12;
  margin-bottom: 24px
}

.cta-banner-title em {
  color: var(--g);
  font-style: normal
}

.cta-signup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  background: var(--g);
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  box-shadow: 0 4px 20px rgba(28, 139, 90, .25)
}

.cta-signup-btn:hover {
  background: var(--gd)
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.cta-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--b);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  gap: 8px;
  transition: border-color .2s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07)
}

.cta-input-wrap:focus-within {
  border-color: var(--g)
}

.cta-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--t);
  background: transparent
}

.cta-input-wrap input::placeholder {
  color: var(--tt)
}

.cta-analyze-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  background: var(--g);
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px
}

.cta-analyze-btn:hover {
  background: var(--gd)
}

.cta-banner-sub {
  font-size: 13px;
  color: var(--tt);
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 6px
}

.cta-banner-sub::before {
  content: '✓';
  color: var(--g);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0
}

/* ─── SECTION SHARED ─── */
.sec-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--g);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.sec-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 16px
}

.sec-sub {
  font-size: 17px;
  color: var(--ts);
  line-height: 1.8
}

/* ─── DEMO MODAL ─── */
.demo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px)
}

.demo-overlay.open {
  display: flex;
  animation: fadein .25s ease
}

@keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.demo-panel {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
  animation: slideup .3s ease
}

@keyframes slideup {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--b);
  background: var(--bg2);
  flex-shrink: 0
}

.demo-header-left {
  display: flex;
  align-items: center;
  gap: 12px
}

.demo-dots {
  display: flex;
  gap: 5px
}

.demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%
}

.demo-dot:nth-child(1) {
  background: #FF5F57
}

.demo-dot:nth-child(2) {
  background: #FFBD2E
}

.demo-dot:nth-child(3) {
  background: #28CA42
}

.demo-url-display {
  font-size: 12px;
  font-family: monospace;
  color: var(--ts);
  background: #fff;
  border: 1px solid var(--b);
  border-radius: 8px;
  padding: 5px 14px
}

.demo-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--tt);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s;
  line-height: 1
}

.demo-close:hover {
  color: var(--t)
}

.demo-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column
}

.demo-start {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
  flex: 1;
  gap: 0
}

.demo-start-icon {
  font-size: 48px;
  margin-bottom: 20px
}

.demo-start-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--t);
  letter-spacing: -.5px;
  margin-bottom: 10px
}

.demo-start-desc {
  font-size: 15px;
  color: var(--ts);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 32px
}

.demo-url-input-row {
  display: flex;
  border: 2px solid var(--b);
  border-radius: 12px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transition: border-color .2s
}

.demo-url-input-row:focus-within {
  border-color: var(--g)
}

.demo-url-input {
  flex: 1;
  font-size: 14px;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--t);
  background: #fff
}

.demo-analyze-btn {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  background: var(--g);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .2s
}

.demo-analyze-btn:hover {
  background: var(--gd)
}

.demo-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  gap: 24px;
  flex: 1
}

.demo-loading-label {
  font-size: 14px;
  color: var(--ts)
}

.demo-loading-bar {
  width: 320px;
  height: 4px;
  background: var(--gl);
  border-radius: 100px;
  overflow: hidden
}

.demo-loading-fill {
  height: 100%;
  background: var(--g);
  width: 0%;
  border-radius: 100px;
  transition: width 2s cubic-bezier(.4, 0, .2, 1)
}

.demo-loading-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px
}

.demo-loading-step {
  font-size: 13px;
  color: var(--tt);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .3s
}

.demo-loading-step.on {
  opacity: 1;
  color: var(--ts)
}

.demo-loading-step.done {
  color: var(--g)
}

.demo-loading-step .ls-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0
}

.demo-loading-step.done .ls-icon {
  background: var(--g);
  color: #fff
}

.demo-results {
  display: none;
  flex: 1;
  flex-direction: column
}

.demo-tabs {
  display: flex;
  border-bottom: 1px solid var(--b);
  padding: 0 24px;
  background: #fff;
  flex-shrink: 0;
  overflow-x: auto
}

.demo-tab {
  font-size: 13px;
  font-weight: 500;
  color: var(--tt);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 18px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .2s;
  margin-bottom: -1px
}

.demo-tab.active {
  color: var(--g);
  border-bottom-color: var(--g)
}

.demo-tab:hover:not(.active) {
  color: var(--ts)
}

.demo-tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gl);
  color: var(--gd);
  font-size: 10px;
  font-weight: 700;
  margin-right: 6px
}

.demo-step-panel {
  display: none;
  padding: 28px 32px;
  flex: 1;
  overflow-y: auto
}

.demo-step-panel.active {
  display: block;
  animation: fadeUp .3s ease
}

.demo-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--t);
  letter-spacing: -.3px;
  margin-bottom: 6px
}

.demo-step-sub {
  font-size: 13px;
  color: var(--ts);
  margin-bottom: 22px;
  line-height: 1.7
}

.demo-next-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-top: 1px solid var(--b);
  flex-shrink: 0;
  background: #fff
}

.demo-progress-dots {
  display: flex;
  gap: 6px
}

.dp {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--b);
  transition: background .3s
}

.dp.active {
  background: var(--g)
}

.dp.done {
  background: var(--gm)
}

.demo-nav-btns {
  display: flex;
  gap: 10px
}

.demo-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s
}

.demo-btn-prev {
  background: transparent;
  color: var(--ts);
  border: 1px solid var(--b)
}

.demo-btn-prev:hover {
  border-color: var(--g);
  color: var(--g)
}

.demo-btn-next {
  background: var(--g);
  color: #fff;
  border: none
}

.demo-btn-next:hover {
  background: var(--gd)
}

/* ─── TRUST / ABOUT ─── */
.trust-sec {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--b)
}

.trust-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.trust-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--t);
  letter-spacing: -1.2px;
  line-height: 1.25;
  margin-bottom: 16px
}

.trust-highlight {
  background: linear-gradient(transparent 60%, rgba(59, 109, 17, .25) 60%);
  display: inline
}

.trust-desc {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.9
}

.trust-inner {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

/* 명함 카드 */
.trust-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--t);
  letter-spacing: -.3px;
  margin-bottom: 6px
}

.trust-logo em {
  color: var(--g);
  font-style: normal
}

.trust-logo-sub {
  font-size: 13px;
  color: var(--tt);
  margin-bottom: 32px
}

.trust-quote-open {
  font-size: 72px;
  font-weight: 900;
  color: var(--gm);
  font-family: Georgia, serif;
  line-height: .7;
  margin-bottom: 16px;
  display: block
}

.trust-quote {
  font-size: 20px;
  color: var(--t);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 24px;
  word-break: keep-all
}

.trust-quote-close {
  font-size: 72px;
  font-weight: 900;
  color: var(--gm);
  font-family: Georgia, serif;
  line-height: .7;
  display: block;
  margin-bottom: 32px
}

.trust-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 4px
}

.trust-author-role {
  font-size: 13px;
  color: var(--ts)
}

/* ─── CLIENT LOGOS ─── */
.clients-sec {
  padding: 72px 0;
  border-top: 1px solid var(--b);
  background: #f8f8f6
}

.clients-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--tt);
  letter-spacing: 1.5px;
  margin-bottom: 40px
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 20px 16px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto
}

.client-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  box-sizing: border-box
}

.client-logo-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  display: block
}

@media (max-width:640px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px
  }

  .client-logo-img {
    max-height: 40px
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0)
}

.hero-demo-wrap {
  margin-top: 16px
}

.hero-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--g);
  background: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  transition: transform .2s, box-shadow .2s
}

.hero-demo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .14)
}

@media (max-width:640px) {
  .hero {
    padding: 56px 0 48px
  }

  .hero-brand {
    margin-bottom: 20px
  }

  .hero-brand .logo-image {
    max-height: 100px
  }

  .hero-search {
    padding: 6px 6px 6px 16px;
    gap: 6px
  }

  .hero-search input {
    font-size: 14px;
    min-width: 0
  }

  .hero-search-btn {
    padding: 10px 18px;
    font-size: 13px;
    flex-shrink: 0
  }
}

@media (max-width:900px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center
  }

  .cta-left,
  .cta-right {
    align-items: center
  }

  .cta-signup-btn {
    margin: 0 auto
  }

  .val-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .trust-wrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .step {
    flex-direction: column;
    align-items: stretch;
    padding: 48px 0
  }

  .step-n {
    flex: none;
    font-size: 72px;
    text-align: center
  }

  .step-content {
    padding: 0 0 24px
  }

  .step.flip .step-mock,
  .step.flip .step-content,
  .step.flip .step-n {
    order: unset
  }

  .pc-result-top {
    flex-direction: column;
    align-items: stretch
  }

  .pc-btn-wrap {
    width: 100%
  }

  .pc-btn {
    width: 100%
  }

  .mech-conds {
    grid-template-columns: 1fr
  }

  .mech-bottom {
    grid-template-columns: 1fr
  }

  .mech-full-body {
    grid-template-columns: 1fr
  }

  .mech-full-divider {
    min-height: auto;
    padding: 24px 0;
    flex-direction: row
  }

  .mech-full-arrow-line {
    width: 100%;
    height: 2px;
    flex: none
  }

  .mech-full-arrow-badge {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    padding: 12px 16px;
    margin: 12px 0
  }
}