@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");

:root {
  --red: #ff0000;
  --blue: #1473e6;
  --blue-dark: #0d66d0;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --gray: #888888;
  --light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --green: #28a745;
  --purple: #6344df;
  --orange: #ff9a00;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* ── SCREEN READER ONLY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ────────────────────────────
   NAV
──────────────────────────── */
.sub-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo svg {
  width: 34px;
  height: 34px;
}

.nav-logo-img {
  width: 30%;
}

.nav-links {
  margin-right: auto;
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  font-weight: 400;
}

.nav-links a:hover {
  color: #111;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-right a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
}

.btn-buy {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-family: "Noto Sans KR", sans-serif;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

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

/* ────────────────────────────
   HERO
──────────────────────────── */
.sub-hero {
  position: relative;
  height: 580px;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orb1 {
  width: 300px;
  height: 300px;
  background: #6600cc;
  top: -80px;
  left: -60px;
  animation-delay: 0s;
}
.orb2 {
  width: 250px;
  height: 250px;
  background: #003399;
  bottom: -60px;
  right: -40px;
  animation-delay: 2s;
}
.orb3 {
  width: 200px;
  height: 200px;
  background: #cc0044;
  top: 50%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.video-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  pointer-events: none;
}

.video-label .ti {
  font-size: 52px;
  color: #fff;
}

.video-label span {
  font-size: 11px;
  color: #666;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Floating app icons */
.app-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.app-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -1px;
  animation: iconFloat 8s ease-in-out infinite;
  font-family: "Noto Sans KR", sans-serif;
}

.app-icon.ps {
  background: #001e36;
  color: #31a8ff;
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}
.app-icon.ai {
  background: #ff9a00;
  color: #330000;
  top: 18%;
  right: 8%;
  animation-delay: 1.5s;
}
.app-icon.ae {
  background: #00005b;
  color: #9999ff;
  bottom: 30%;
  left: 8%;
  animation-delay: 3s;
}
.app-icon.pr {
  background: #00005b;
  color: #9999ff;
  bottom: 20%;
  right: 6%;
  animation-delay: 2s;
}
.app-icon.lr {
  background: #001e36;
  color: #31a8ff;
  top: 55%;
  left: 4%;
  animation-delay: 4s;
}
.app-icon.id {
  background: #470137;
  color: #ff3366;
  top: 10%;
  right: 22%;
  animation-delay: 2.5s;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.sub-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 640px;
  padding: 0 20px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #aaa;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sub-hero-title {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}

.sub-hero-title em {
  font-style: normal;
  color: var(--orange);
}

.sub-hero-sub {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 300;
}

/* ── Hero CTA 버튼 그룹 ── */
.hero-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #111;
  padding: 16px 44px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "Noto Sans KR", sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ── 영상보기 버튼 ── */
.hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  padding: 0;
}

.hero-video-btn:hover {
  opacity: 0.8;
}

.hero-video-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hero-video-btn:hover .hero-video-icon {
  background: #222;
}

.hero-video-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px; /* 시각적 중앙 보정 */
}

.hero-cta-sub {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}

/* ────────────────────────────
   WORKFLOW STEPS
──────────────────────────── */
.workflow {
  display: flex;
  background: #0f0f0f;
  border-top: 1px solid #222;
}

.workflow-step {
  flex: 1;
  padding: 28px 24px;
  border-right: 1px solid #222;
}

.workflow-step:last-child {
  border-right: none;
}

.ws-num {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.ws-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ws-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* ────────────────────────────
   APPS STRIP
──────────────────────────── */
.apps-section {
  padding: 56px 40px;
  background: #f8f8f8;
}

.apps-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.apps-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  min-width: 140px;
}

.apps-label span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  margin-top: 4px;
}

.apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.app-chip {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s;
  font-family: "Noto Sans KR", sans-serif;
}

.app-chip:hover {
  transform: scale(1.1);
}

.more-btn {
  font-size: 13px;
  color: var(--blue);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  background: none;
  border: none;
  font-family: "Noto Sans KR", sans-serif;
}

/* ────────────────────────────
   SECTION COMMON
──────────────────────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 48px;
}

/* ────────────────────────────
   BEFORE / AFTER  — 드래그 슬라이더
──────────────────────────── */
.ba-section {
  padding: 80px 40px;
  background: #111;
}

.ba-section .section-label {
  color: var(--orange);
}

.ba-section .section-title {
  color: #fff;
}

.ba-section .section-sub {
  color: #888;
}

.ba-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* ── Card ── */
.ba-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.ba-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: translateY(-3px);
  border-color: #3a3a3a;
}

/* ── Card Header ── */
.ba-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #242424;
}

.ba-card-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-app-badge {
  font-size: 9px;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0;
  flex-shrink: 0;
}

.ba-badge-ps { background: #31a8ff; color: #001e36; }
.ba-badge-ai { background: #ff9a00; color: #1a0500; }
.ba-badge-pr { background: #9999ff; color: #00005b; }

.ba-app-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ddd;
}

.ba-tag {
  font-size: 10px;
  color: #666;
  background: #222;
  border: 1px solid #333;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ── Slider wrapper ── */
.ba-slider-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* ── Layers ── */
.ba-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.ba-layer-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-layer-after {
  z-index: 1;
}

/* ── Before / After labels ── */
.ba-label-before,
.ba-label-after {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.ba-label-before {
  left: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.ba-label-after {
  right: 10px;
  background: var(--orange);
  color: #fff;
}

/* ── Handle ── */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-handle-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.ba-handle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.15s;
}

.ba-handle-btn svg {
  width: 16px;
  height: 16px;
  color: #333;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ba-slider-wrap:active .ba-handle-btn {
  transform: scale(1.15);
}

/* ── Info row ── */
.ba-info {
  padding: 14px 16px 16px;
  border-top: 1px solid #242424;
}

.ba-desc-main {
  font-size: 14px;
  font-weight: 700;
  color: #eee;
  margin-bottom: 5px;
  line-height: 1.35;
}

.ba-tools {
  font-size: 11px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.ba-time-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.ba-time-before {
  color: #666;
  text-decoration: line-through;
}

.ba-arrow {
  color: var(--orange);
  font-weight: 700;
}

.ba-time-after {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}

/* ══════════════════════════════
   PHOTOSHOP card visuals
══════════════════════════════ */
.ba-ps-before {
  background: #2e2e2e;
  display: flex;
  flex-direction: column;
}

.ba-ps-before-inner,
.ba-ps-after-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 0;
  gap: 8px;
}

.ba-ps-after {
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
}

.ps-toolbar {
  display: flex;
  gap: 6px;
  margin-bottom: 2px;
}

.ps-tool {
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 3px;
  background: #2a2a3e;
  color: #888;
  border: 1px solid #3a3a55;
}

.ps-tool.active {
  background: #31a8ff22;
  color: #31a8ff;
  border-color: #31a8ff55;
}

.ps-canvas {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.ps-canvas.raw {
  background: #3a3a3a;
}

.ps-subject {
  width: 70px;
  height: 90px;
  border-radius: 50% 50% 40% 40% / 55% 55% 45% 45%;
  background: radial-gradient(ellipse at 35% 30%, #ff9dbd, #c84b97 60%, #7b1551);
  box-shadow: -8px 12px 30px #ff6b9d66, 0 0 40px #c84b9733;
  position: relative;
  z-index: 2;
}

.ps-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #ffffff08 1px, transparent 1px);
  background-size: 12px 12px;
}

.ps-light-beam {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 140px;
  background: linear-gradient(180deg, #31a8ff22, transparent);
  border-radius: 50%;
}

.raw-subject {
  background: #888 !important;
  box-shadow: none !important;
}

.ps-raw-bg {
  position: absolute;
  inset: 0;
  background: #444;
}

.ps-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 10px;
}

.ps-status-bar.dark {
  opacity: 0.75;
}

.ps-badge {
  font-size: 9px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0;
}

.ps-badge.ps  { background: #31a8ff; color: #001e36; }
.ps-badge.ai  { background: #ff9a00; color: #1a0500; }
.ps-badge.pr  { background: #9999ff; color: #00005b; }

.ps-status-text {
  font-size: 9px;
  color: #aaa;
}

/* ══════════════════════════════
   ILLUSTRATOR card visuals
══════════════════════════════ */
.ba-ai-before {
  background: #1e1e1e;
  display: flex;
  flex-direction: column;
}

.ba-ai-after {
  background: #0f0c29;
  display: flex;
  flex-direction: column;
}

.ba-ai-before-inner,
.ba-ai-after-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 0;
}

.ai-artboard {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed #444;
  border-radius: 4px;
  margin-bottom: 8px;
}

.ai-artboard.dark {
  border-color: #333;
}

.ai-logo-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ai-hex {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff9a00, #ff5722);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  box-shadow: 0 0 20px #ff9a0077;
}

.ai-wordmark {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
}

.ai-color-swatches {
  display: flex;
  gap: 5px;
}

.ai-sw {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.sw1 { background: #ff9a00; }
.sw2 { background: #ff5722; }
.sw3 { background: #fff; }
.sw4 { background: #333; border: 1px solid #555; }

.ai-blank-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ai-blank-box {
  width: 44px;
  height: 44px;
  background: #333;
  border: 2px dashed #555;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
}

.ai-blank-text {
  font-size: 11px;
  color: #555;
}

/* ══════════════════════════════
   PREMIERE PRO card visuals
══════════════════════════════ */
.ba-pr-before {
  background: #111;
  display: flex;
  flex-direction: column;
}

.ba-pr-after {
  background: #0d1117;
  display: flex;
  flex-direction: column;
}

.ba-pr-before-inner,
.ba-pr-after-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 0;
}

.pr-timeline {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.pr-timeline.dark .pr-clip.raw {
  opacity: 0.55;
}

.pr-track {
  display: flex;
  gap: 3px;
  align-items: center;
}

.pr-clip {
  height: 26px;
  border-radius: 3px;
  flex: 1;
}

.pr-clip.graded.c1 { background: linear-gradient(90deg, #1a3a5c, #2d6a8a); }
.pr-clip.graded.c2 { background: linear-gradient(90deg, #2d6a8a, #1b4332); }
.pr-clip.graded.c3 { background: linear-gradient(90deg, #1b4332, #0d3320); }

.pr-clip.raw.c1 { background: #5a4030; }
.pr-clip.raw.c2 { background: #4a3525; }
.pr-clip.raw.c3 { background: #3d2b1a; }

.pr-lumetri {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pr-scope {
  width: 56px;
  height: 40px;
  background: #0a0a0a;
  border-radius: 4px;
  border: 1px solid #2a2a2a;
  background-image:
    radial-gradient(ellipse at 30% 70%, #1a3a5c66 30%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, #1b433266 30%, transparent 60%);
  flex-shrink: 0;
}

.pr-wheels {
  display: flex;
  gap: 5px;
}

.pr-wheel {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #333;
  position: relative;
}

.pr-wheel::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
}

.w-shadow::after { background: radial-gradient(circle at 30% 30%, #334155, #0f172a); }
.w-mid::after    { background: radial-gradient(circle at 50% 50%, #4ade80, #166534); }
.w-high::after   { background: radial-gradient(circle at 70% 30%, #93c5fd, #1d4ed8); }

.pr-raw-label {
  font-size: 9px;
  color: #555;
  text-align: center;
  padding: 4px 0;
}

/* ────────────────────────────
   PLANS
──────────────────────────── */
.plans-section {
  padding: 80px 40px;
  background: #f5f5f5;
}

.plans-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.plans-header {
  text-align: center;
  margin-bottom: 48px;
}

.plans-header .section-label {
  text-align: center;
}
.plans-header .section-title {
  text-align: center;
}
.plans-header .section-sub {
  text-align: center;
  margin-bottom: 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.plan-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s;
}

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

.plan-card.featured {
  border: 2px solid var(--blue);
}

.plan-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.plan-badge.student {
  background: var(--green);
}
.plan-badge.biz {
  background: var(--purple);
}

.sub-plan-type {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-who {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

.plan-price-old {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.plan-price {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.plan-vat {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 24px;
}

.plan-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-features li .ti {
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
  color: var(--blue);
}

.plan-features li .ti.green {
  color: var(--green);
}
.plan-features li .ti.purple {
  color: var(--purple);
}

.sub-plan-btn {
  width: 100%;
  padding: 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  transition: all 0.15s;
}

.sub-plan-btn:hover {
  background: var(--blue);
  color: #fff;
}
.sub-plan-btn.featured-btn {
  background: var(--blue);
  color: #fff;
}
.sub-plan-btn.featured-btn:hover {
  background: var(--blue-dark);
}
.sub-plan-btn.purple-btn {
  border-color: var(--purple);
  color: var(--purple);
}
.sub-plan-btn.purple-btn:hover {
  background: var(--purple);
  color: #fff;
}

/* ────────────────────────────
   FAQ
──────────────────────────── */
.faq-section {
  padding: 80px 40px;
  background: #fff;
}

.faq-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  margin-top: 48px;
}

.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-cat {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  font-family: "Noto Sans KR", sans-serif;
  color: #666;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.faq-cat.sub-active {
  background: #f0f4ff;
  color: var(--blue);
  font-weight: 700;
}
.faq-cat:hover:not(.sub-active) {
  background: #f5f5f5;
}

.faq-cat .ti {
  font-size: 15px;
  flex-shrink: 0;
}

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

.faq-item {
  border-bottom: 1px solid #f0f0f0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  text-align: left;
  font-family: "Noto Sans KR", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q:hover {
  color: var(--blue);
}

.faq-q .ti {
  font-size: 18px;
  color: #999;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-q.open .ti {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-a {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}

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

/* ────────────────────────────
   FOOTER
──────────────────────────── */
.sub-footer {
  background: #f5f5f5;
  color: #333;
  padding: 48px 40px 32px;
  border-top: 1px solid #e0e0e0;
}

.footer-main {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 32px;
  align-items: flex-start;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  flex: 1;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: #111;
}

/* ── 푸터 우측: 로고 + SNS ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  min-width: 220px;
  padding-left: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;

  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
}

.footer-sns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-sns a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s;
}

.footer-sns a:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* ── 푸터 하단 ── */
.sub-footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 12px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.footer-legal a {
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: #111;
}

.footer-legal .legal-divider {
  color: #ccc;
  font-size: 10px;
}

.footer-copyright {
  font-size: 12px;
  color: #888;
  text-align: right;
  width: 100%;
}

/* ──────────────────────────────────────────────────
   APP CHIP — 이미지 아이콘 스타일 오버라이드
────────────────────────────────────────────────── */
.app-chip.app-chip-img {
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
}

.app-chip.app-chip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}


/* ══════════════════════════════════════════════════
   RESPONSIVE — 768px (태블릿)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .sub-nav {
    padding: 0 24px;
    height: 52px;
  }

  .nav-links {
    display: none;
  }

  .nav-right a {
    display: none;
  }

  .nav-logo-img {
    width: 40%;
  }

  /* ── HERO ── */
  .sub-hero {
    height: 480px;
  }

  .sub-hero-title {
    font-size: 42px;
  }

  .sub-hero-sub {
    font-size: 14px;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 15px;
  }

  .hero-video-icon {
    width: 44px;
    height: 44px;
  }

  /* ── WORKFLOW ── */
  .workflow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .workflow-step {
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
  }

  .workflow-step:nth-child(2n) {
    border-right: none;
  }

  .workflow-step:nth-child(3),
  .workflow-step:nth-child(4) {
    border-bottom: none;
  }

  /* ── APPS ── */
  .apps-section {
    padding: 40px 24px;
  }

  .apps-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .apps-label {
    font-size: 18px;
  }

  .apps-grid {
    gap: 8px;
  }

  /* ── BEFORE / AFTER ── */
  .ba-section {
    padding: 60px 24px;
  }

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

  .ba-slider-wrap {
    height: 200px;
  }

  .section-title {
    font-size: 30px;
  }

  /* ── PLANS ── */
  .plans-section {
    padding: 60px 24px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
  }

  .plan-card.featured {
    order: -1;
  }

  /* ── FAQ ── */
  .faq-section {
    padding: 60px 24px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .faq-cats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-cat {
    padding: 8px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 12px;
  }

  /* ── FOOTER ── */
  .sub-footer {
    padding: 40px 24px 24px;
  }

  .footer-main {
    flex-direction: column;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-brand {
    align-items: flex-start;
    padding-left: 0;
    min-width: unset;
  }

  .sub-footer-bottom {
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copyright {
    text-align: left;
  }
}


/* ══════════════════════════════════════════════════
   RESPONSIVE — 390px (모바일)
══════════════════════════════════════════════════ */
@media (max-width: 390px) {

  /* ── NAV ── */
  .sub-nav {
    padding: 0 16px;
    height: 48px;
  }

  .nav-logo-img {
    width: 50%;
  }

  /* ── HERO ── */
  .sub-hero {
    height: auto;
    min-height: 420px;
    padding: 60px 0 40px;
    align-items: flex-start;
  }

  .sub-hero-content {
    text-align: left;
    padding: 0 20px;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .sub-hero-title {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .sub-hero-sub {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-cta {
    padding: 13px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .hero-video-btn {
    font-size: 14px;
  }

  .hero-video-icon {
    width: 40px;
    height: 40px;
  }

  .hero-cta-sub {
    font-size: 11px;
    margin-top: 8px;
  }

  /* ── WORKFLOW ── */
  .workflow {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-step {
    padding: 20px 16px;
  }

  .ws-num {
    font-size: 11px;
  }

  .ws-title {
    font-size: 13px;
  }

  .ws-desc {
    font-size: 11px;
  }

  /* ── APPS ── */
  .apps-section {
    padding: 32px 16px;
  }

  .apps-inner {
    gap: 20px;
  }

  .apps-label {
    font-size: 16px;
  }

  .app-chip,
  .app-chip.app-chip-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .apps-grid {
    gap: 8px;
  }

  /* ── SECTION COMMON ── */
  .section-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 32px;
  }

  /* ── BEFORE / AFTER ── */
  .ba-section {
    padding: 48px 16px;
  }

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

  .ba-slider-wrap {
    height: 210px;
  }

  .ba-card-header {
    padding: 10px 12px 8px;
  }

  .ba-app-name {
    font-size: 10px;
  }

  .ba-info {
    padding: 12px 14px 14px;
  }

  .ba-desc-main {
    font-size: 13px;
  }

  .ba-tools {
    font-size: 10px;
  }

  /* ── PLANS ── */
  .plans-section {
    padding: 48px 16px;
  }

  .plans-grid {
    max-width: 100%;
    gap: 14px;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .plan-price {
    font-size: 28px;
  }

  .sub-plan-btn {
    padding: 12px;
    font-size: 13px;
  }

  /* ── FAQ ── */
  .faq-section {
    padding: 48px 16px;
  }

  .faq-layout {
    gap: 20px;
    margin-top: 24px;
  }

  .faq-cats {
    gap: 6px;
  }

  .faq-cat {
    padding: 7px 12px;
    font-size: 11px;
  }

  .faq-cat .ti {
    font-size: 13px;
  }

  .faq-q {
    font-size: 13px;
    padding: 16px 0;
  }

  .faq-a {
    font-size: 13px;
  }

  /* ── FOOTER ── */
  .sub-footer {
    padding: 32px 16px 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-col h4 {
    font-size: 12px;
  }

  .footer-col a {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-sns {
    gap: 8px;
  }

  .footer-sns a {
    width: 28px;
    height: 28px;
  }

  .footer-legal {
    gap: 8px;
    font-size: 11px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}
