@charset "UTF-8";
:root {
  --bg: #0b1020;
  --bg2: #0f172a;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --sub: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.55);
  --primary: #4f46e5;
  --primary2: #22c55e;
  --primary3: #27d6ee;
  --primary4: #ff3c9e;
  --danger: #ef4444;

  --container: 1200px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --stagger: 0.18s; /* 아이템 간 간격 */
  --in: 0.6s; /* 한 아이템이 나타나는 데 걸리는 시간 */
  --hold: 2s; /* 전부 나온 뒤 유지 시간 */
  --out: 0.5s; /* 사라지는 시간 */
  --rest: 0.6s; /* 한 사이클 끝나고 쉬는 시간 */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Apple SD Gothic Neo",
    sans-serif;
  background:
    radial-gradient(
      900px 500px at 15% 10%,
      rgba(79, 70, 229, 0.25),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 15%,
      rgba(34, 197, 94, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 50% 95%,
      rgba(236, 72, 153, 0.12),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  padding-bottom: 70px;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(92vw, var(--container));
  margin: 0 auto;
}

/* Top Nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.55);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;
}
.mark img {
  width: 100%;
}
.brand-title {
  font-weight: 800;
  letter-spacing: 0.3px;
}
.brand-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--sub);
}
.nav-links a:hover {
  color: #fff;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0b1020;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}
.cta:hover {
  opacity: 0.92;
}
.cta .arrow {
  font-weight: 900;
}

/* Sections */
section {
  padding: 84px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;

  /* 핵심: 모바일/애매한 폭에서 줄바꿈 허용 */
  flex-wrap: wrap;
}

.section-head > div:first-child {
  flex: 1 1 520px; /* 텍스트 영역 최소폭 확보 */
  min-width: 280px;
}

.process-card {
  flex: 1 1 520px; /* 다이어그램 카드도 줄바꿈 가능 */
  width: 100%;
  max-width: 640px; /* 데스크탑에서 너무 커지면 제한 */
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 박스에 꽉 차게 */
  display: block;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--sub);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary2);
}
h1 {
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}
h2 {
  font-size: 34px;
  letter-spacing: -0.3px;
}
p.lead {
  font-size: 18px;
  color: var(--sub);
  max-width: 62ch;
  margin-top: 14px;
}
.muted {
  color: var(--muted);
}
.divider {
  height: 1px;
  background: var(--border);
  transform: scaleX(0);
  transform-origin: center;
  animation: dividerLoop 5s ease-in-out infinite;
}

@keyframes dividerLoop {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }

  40% {
    transform: scaleX(1);
    opacity: 1;
  }

  80% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
.overflow-hidden {
  overflow: hidden;
}
/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad {
  padding: 22px;
}
.card.pad-lg {
  padding: 28px;
}

.card.border_primary3 {
  border-color: var(--primary3);
}
.card.border_primary4 {
  border-color: var(--primary4);
}

/* Hero */
.hero {
  padding: 88px 0 64px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}
.btn-primary {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}
.pillrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.pill {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  text-align: left;
}
.pill b {
  display: block;
  font-size: 20px;
}
.pill span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}
.media .cap {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.15);
}

/* WHY Proof block */
.why-proof {
  margin-top: 28px; /* grid-3 다음 간격만 맞춤 */
}

.why-proof__head h3 {
  margin-top: 10px;
  margin-bottom: 6px;
}

.why-proof__head .lead {
  margin-bottom: 14px;
  opacity: 0.85;
}

/* Table wrap: 카드 내부에서만 살짝 inset */
.why-proof .table-wrap {
  margin-top: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden; /* radius 안쪽까지 적용 */
  background: rgba(0, 0, 0, 0.02);
}

/* Table */
.cn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: center; /* 전체 중앙정렬 */
}

.cn-table thead th {
  padding: 14px 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.cn-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.cn-table tbody tr:last-child td {
  border-bottom: none;
}

/* 숫자 정렬 클래스 제거 가능 */
.cn-table td.num {
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* 강조 행만 힘주기 */
.cn-table tbody tr.is-strong td {
  font-weight: 700;
}

/* Foot */
.why-proof__foot {
  margin-top: 28px !important;
  opacity: 0.9;
  font-size: 18px !important;
  text-align: center;
}
.why-proof__foot .pointColor {
  color: var(--primary3);
  font-weight: 900;
}
/* A 계정 컬럼 톤다운 */
.cn-table .col-a {
  color: rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.cn-table .col-b {
  color: #27d6ee;
}
/* 강조 행에서는 A도 기본 톤 유지 */
.cn-table tbody tr.is-strong .col-a {
  color: rgba(255, 255, 255, 0.7);
}

/* 강조 행에서 너무 과해 보이지 않게 */
.cn-table tbody tr.is-strong .col-b {
  font-weight: 700;
}
/* Mobile: 표가 눌리지 않게 스크롤 */
@media (max-width: 720px) {
  .why-proof .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cn-table {
    min-width: 560px;
  }
}

/* Feature cards */
.icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(79, 70, 229, 0.2);
  border: 1px solid rgba(79, 70, 229, 0.35);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.card h3 {
  font-size: 18px;
  margin-top: 12px;
}
.card p {
  color: var(--sub);
  font-size: 14px;
  margin-top: 10px;
}

/* Process */
.step {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.step .no {
  font-weight: 900;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge {
  font-size: 12px;
  color: #0b1020;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  padding: 4px 10px;
  border-radius: 999px;
}
.step h4 {
  margin-top: 10px;
  font-size: 16px;
}
.step ul {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--sub);
  font-size: 13px;
}
.step li {
  margin: 6px 0;
}

/* Case studies */
.case-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
}
.case-body {
  padding: 16px;
}
.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.tag {
  font-size: 12px;
  color: var(--sub);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Pricing */
.price {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price .big {
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.5px;
}
.note {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.list {
  margin-top: 12px;
  color: var(--sub);
  font-size: 13px;
}
.list li {
  margin: 8px 0;
}
/*pricing-section*/
.pricing-section {
  padding: 100px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-label {
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 10px;
}

.pricing-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-desc {
  color: #9a9a9a;
  font-size: 14px;
}
/* 전체 사이클 길이 = 마지막 등장 시점 + 유지 + 사라짐 + 쉬는 시간 */
.pricing-item {
  opacity: 0;
  transform: translateY(16px);
  animation-name: pricingLoop;
  animation-duration: calc(
    (3 * var(--stagger)) + var(--in) + var(--hold) + var(--out) + var(--rest)
  );
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

/* 순차 딜레이 */
.pricing-item:nth-child(1) {
  animation-delay: calc(0 * var(--stagger));
}
.pricing-item:nth-child(2) {
  animation-delay: calc(1 * var(--stagger));
}
.pricing-item:nth-child(3) {
  animation-delay: calc(2 * var(--stagger));
}

/*
  keyframes 설명:
  - 0%~(in 구간): 등장
  - 그 다음 hold 구간: 유지(2초)
  - 그 다음 out 구간: 사라짐
  - 나머지: 다음 루프까지 대기
*/
@keyframes pricingLoop {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

  /* 등장 완료 지점 */
  25% {
    opacity: 1;
    transform: translateY(0);
  }

  /* 유지(hold) 끝 지점 */
  75% {
    opacity: 1;
    transform: translateY(0);
  }

  /* 사라짐 */
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

/* 모션 줄이기 환경에서는 애니메이션 끔 */
@media (prefers-reduced-motion: reduce) {
  .pricing-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/* DB section (form) */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label {
  font-size: 12px;
  color: var(--muted);
}
input,
textarea,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  color: #fff;
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.full {
  grid-column: 1 / -1;
}
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.smallprint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* 6 구글 폼 연동*/
.final-cta {
  padding: 120px 20px;
  background:
    linear-gradient(rgba(11, 15, 26, 0.7), rgba(11, 15, 26, 0.7)),
    url("../img/9.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.final-cta__inner {
  max-width: 900px;
  margin: 0 auto;
}
.final-cta__inner.txt-center {
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 40px;
}

.final-cta__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.final-cta__badges span {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 14px;
  color: #e2e8f0;
  backdrop-filter: blur(6px);
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.btn-primary2 {
  display: inline-block;
  padding: 16px 42px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ff007a, #ff3c9e);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(255, 0, 122, 0.35);
}

.btn-primary2:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 0, 122, 0.55);
}

.link-muted {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
}

.link-muted:hover {
  color: #ffffff;
}

/* 반응형 */
@media (min-width: 768px) {
  .final-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}
/* Footer */
footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
  color: var(--muted);
  font-size: 13px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
/*kakao fixed bar*/
.ka-hidden {
  display: none;
}
.ka-hidden-1 {
  display: inline;
}

/*icon(뱃지)*/
/* 공통 배지 스타일 */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 4px 10px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 600;
  line-height: 1;

  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);

  vertical-align: middle;
  white-space: nowrap;
}

/* 아이콘(점) 느낌 */
.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

/* 타입별 배지 */
.badge--hot {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.12);
}

.badge--hot::before {
  background: rgba(239, 68, 68, 0.95);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.badge--good {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.12);
}

.badge--good::before {
  background: rgba(34, 197, 94, 0.95);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

/* Responsive */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 38px;
  }
  section {
    padding: 70px 0;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .ka-hidden-1 {
    display: none;
  }
  .ka-hidden-2 {
    display: inline;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta {
    background-attachment: scroll;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 64px 0 64px;
  }
  h1,
  h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
  .pillrow {
    grid-template-columns: 1fr;
  }
  .ka-hidden-1 {
    display: none;
  }
  .ka-hidden-2 {
    display: inline;
  }
  .final-cta__inner.txt-center {
    text-align: left;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pricing-title {
    font-size: 34px;
  }
  .final-cta {
    background-attachment: scroll;
  }
}
