/* ─────────────────────────────────────────────
   AD-CUT Landing Page
   브랜드: #6C5CE7 (보라) + 화이트 + 다크 텍스트
   ───────────────────────────────────────────── */
:root {
  --brand: #6C5CE7;
  --brand-dark: #5A4ED1;
  --brand-soft: #EFEDFF;
  --brand-glow: rgba(108, 92, 231, 0.35);
  --text: #15161B;
  --text-soft: #4B4D58;
  --text-light: #8A8D99;
  --bg: #FFFFFF;
  --bg-soft: #FAFAFB;
  --bg-card: #FFFFFF;
  --border: #ECECF0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(20, 22, 30, 0.04);
  --shadow-md: 0 8px 30px rgba(20, 22, 30, 0.08);
  --shadow-lg: 0 24px 60px rgba(108, 92, 231, 0.18);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }
.hl { color: var(--brand); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--transition), background 0.2s var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0;
}
.logo-text {
  background: linear-gradient(90deg, #15161B, #6C5CE7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.15s var(--transition);
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  padding: 9px 18px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.15s var(--transition), background 0.15s var(--transition);
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--transition), opacity 0.2s;
}

/* ============ HERO ============ */
.hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(108, 92, 231, 0.10) 0%, transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(108, 92, 231, 0.08) 0%, transparent 60%),
    #fff;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 .big {
  background: linear-gradient(90deg, var(--brand), #8B7DFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.lead {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.65;
}
.lead b { color: var(--text); font-weight: 700; }
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s var(--transition), box-shadow 0.2s var(--transition), background 0.15s;
  box-shadow: 0 4px 12px var(--brand-glow);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--brand-glow);
}
.btn-primary.block { width: 100%; padding: 16px 28px; margin-top: 8px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.15s var(--transition);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stats span { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* hero video */
.hero-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: none;   /* 3D 기울기 제거 */
  transition: transform 0.4s var(--transition);
}
.hero-video-frame:hover {
  transform: none;
}

/* ============ VIDEO PLACEHOLDER (공통) ============ */
.vid-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4F44B8 0%, #6C5CE7 50%, #8B7DFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.vid-placeholder.big { aspect-ratio: 9 / 16; }
.vid-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 3.2s linear infinite;
  pointer-events: none;
}
.vid-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 30% 30%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(300px 150px at 70% 70%, rgba(0,0,0,0.15), transparent 60%);
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
.vid-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.play-btn {
  position: relative;
  z-index: 2;
  width: 64px; height: 64px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.play-btn svg { width: 26px; height: 26px; fill: var(--brand); margin-left: 4px; }
.vid-placeholder:hover .play-btn { transform: scale(1.1); }

/* ============ STRENGTHS ============ */
.strengths {
  padding: 80px 0;
  background: var(--bg-soft);
}
.strength-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.strength-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition), border-color 0.2s;
}
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.strength-card.highlight {
  background: linear-gradient(135deg, var(--brand) 0%, #8B7DFF 100%);
  color: #fff;
  border-color: transparent;
}
.strength-card.highlight h3, .strength-card.highlight p, .strength-card.highlight b { color: #fff; }
.strength-card .ico {
  font-size: 30px;
  margin-bottom: 14px;
  line-height: 1;
}
.strength-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.strength-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============ SEC HEAD (common) ============ */
.sec-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker {
  display: inline-block;
  padding: 5px 12px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.sec-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.sec-head p {
  font-size: 16px;
  color: var(--text-soft);
}

/* ============ PORTFOLIO ============ */
.portfolio { padding: 100px 0; }
.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.port-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition);
}
.port-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.port-item .vid-placeholder { border-radius: 0; }

/* ============ SERVICE ============ */
.service {
  padding: 100px 0;
  background: var(--bg-soft);
}
.svc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.svc-left h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 28px;
}
.svc-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--brand);
  border-radius: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.svc-note {
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brand);
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}
.svc-note b { color: var(--text); font-weight: 700; }

/* price card */
.price-card {
  background: linear-gradient(135deg, var(--brand) 0%, #5A4ED1 100%);
  color: #fff;
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}
.price-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.price-amount .num { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.price-amount .unit { font-size: 16px; font-weight: 500; opacity: 0.85; }
.price-sub { font-size: 13px; opacity: 0.75; margin-bottom: 20px; }
.price-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.price-line b { font-weight: 700; }
.price-card .btn-primary {
  background: #fff;
  color: var(--brand);
  margin-top: 20px;
  box-shadow: none;
}
.price-card .btn-primary:hover {
  background: #f0eeff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ============ PROCESS ============ */
.process { padding: 100px 0; }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.proc-step {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition), border-color 0.2s;
}
.proc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.proc-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.proc-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.proc-step p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============ PARTNER ============ */
.partner {
  padding: 100px 0;
  background: var(--bg-soft);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.partner-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition), border-color 0.2s;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.pcard-ico { font-size: 36px; margin-bottom: 14px; }
.partner-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.partner-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.partner-cta { text-align: center; }

/* ============ CONTACT ============ */
.contact { padding: 100px 0; background: #fff; }
.contact-form {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.contact-form textarea { resize: vertical; }
.contact-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 14px;
}

/* ============ FOOTER ============ */
.footer {
  background: #111219;
  color: #C9CACF;
  padding: 64px 0 32px;
}
.footer .logo { color: #fff; }
.footer .logo-text { background: #fff; -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #25262E;
}
.foot-brand p {
  font-size: 13.5px;
  color: #8A8D99;
  margin-top: 18px;
  line-height: 1.6;
  max-width: 360px;
}
.foot-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: #8A8D99;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.foot-col a:hover { color: #fff; }
.foot-bot {
  text-align: center;
  font-size: 12.5px;
  color: #5A5B66;
  padding-top: 32px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .strength-grid { grid-template-columns: repeat(3, 1fr); }
  .strength-card.highlight { grid-column: span 3; }
  .proc-grid { grid-template-columns: repeat(3, 1fr); }
  .port-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-inner { gap: 16px; }
  .hero { padding: 56px 0 40px; }   /* nav 높이만큼만 위 여백 — 영상이 헤더 바로 아래 */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-video { order: -1; }   /* 모바일: 영상이 텍스트 위로 */
  .hero-video-frame {
    width: 100%;
    max-width: none;
    transform: none;
    border-radius: 0;            /* 모서리 라운드 제거 */
    box-shadow: none;            /* 그림자 제거 */
  }
  .hero-video-frame:hover { transform: none; }
  .hero-inner { padding: 0; gap: 24px; }    /* 좌우 여백 완전 제거 + 영상-텍스트 간격 축소 */
  .hero-video { padding: 0; margin: 0; }
  .hero-video-el { border-radius: 0; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .hero h1 br { display: none; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-card.highlight { grid-column: span 1; }
  .port-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .proc-grid { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .contact-form .row { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .strengths, .portfolio, .service, .process, .partner, .contact { padding: 60px 0; }
  .sec-head { margin-bottom: 36px; }
}


/* ============ VIDEO PORTFOLIO (2026-05-19) ============ */
.hero-vid {
  width: 100%; height: 100%;
  object-fit: cover;
  background: #4F44B8;
}
.port-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.25s var(--transition), box-shadow 0.25s var(--transition);
  background: #1a1a24;
}
.port-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}
.port-vid {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #1a1a24;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.port-vid.main { opacity: 1; }
.port-vid.active { opacity: 1; z-index: 2; }
.port-vid.fade-out { opacity: 0; z-index: 1; }
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  z-index: 5;
  pointer-events: none;
}
.port-label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.port-count {
  background: rgba(255,255,255,0.95);
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.port-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.0), rgba(108, 92, 231, 0.15));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 4;
  pointer-events: none;
}
.port-item:hover::after { opacity: 1; }

/* 8 columns / 4 columns / 2 columns responsive */
.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (min-width: 1280px) {
  .port-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .port-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}


/* ============ CARD LINKS (2026-05-19 fix) ============ */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 14px;
  transition: gap 0.2s var(--transition);
}
.card-link::after { content: ''; }
.strength-card.highlight .card-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.card-link:hover { gap: 8px; }

.price-secondary {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.price-secondary:hover { color: #fff; }

/* 2026-05-26: hero 영상 박은 거 박은 거 → CSS 모션 박은 거 */
.hero-motion {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0820 0%, #1a0e3a 50%, #2a1654 100%);
  box-shadow: 0 30px 80px rgba(108, 92, 231, 0.35);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: heroFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, #6C5CE7 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, #00D4AA 0%, transparent 70%);
  bottom: -15%;
  right: -15%;
  animation-delay: -3s;
}
.orb-3 {
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, #FF6B9D 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -6s;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15%, -10%) scale(1.1); }
  66% { transform: translate(-10%, 12%) scale(0.95); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: gridSlide 12s linear infinite;
}
@keyframes gridSlide {
  from { transform: translateY(0); }
  to { transform: translateY(32px); }
}
.hero-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: white;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  z-index: 2;
}
.hero-label .play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 2rem;
  padding-left: 8px;
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 24px rgba(255,255,255,0); }
}


/* ============ HERO VIDEO (실제 영상) ============ */
.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0a0a0a;
}



/* ============ DARK NAV + HERO (로고 변경 반영 2026-06-11) ============ */
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.nav {
  background: rgba(10, 10, 10, 0.85) !important;
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.96) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78) !important;
}
.nav-links a:hover {
  color: #FFFFFF !important;
}
.nav-toggle span {
  background: #FFFFFF !important;
}
.nav-cta {
  background: #FF1A6B !important;
  color: #FFFFFF !important;
  border: none !important;
}
.nav-cta:hover {
  background: #FF3D85 !important;
}

/* ─── HERO ─── */
.hero {
  background:
    radial-gradient(800px 550px at 50% 50%, rgba(220, 215, 200, 0.10) 0%, transparent 65%),
    radial-gradient(1400px 900px at 50% 50%, rgba(200, 195, 180, 0.04) 0%, transparent 70%),
    #0A0A0A !important;
}
.hero h1,
.hero h1 .big {
  color: #FFFFFF !important;
}
.hero h1 .hl {
  color: #FF1A6B !important;
}
.lead {
  color: rgba(255, 255, 255, 0.72) !important;
}
.lead b {
  color: #FFFFFF !important;
}
.badge {
  background: rgba(255, 26, 107, 0.15) !important;
  color: #FF6BA0 !important;
  border: 1px solid rgba(255, 26, 107, 0.3) !important;
}
.hero-stats b {
  color: #FFFFFF !important;
}
.hero-stats span {
  color: rgba(255, 255, 255, 0.55) !important;
}
.hero-stats {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

/* ─── CTA 버튼 (hero 안) ─── */
.hero-cta .btn-primary,
.btn-primary {
  background: #FF1A6B !important;
  color: #FFFFFF !important;
  border-color: #FF1A6B !important;
}
.hero-cta .btn-primary:hover,
.btn-primary:hover {
  background: #FF3D85 !important;
  border-color: #FF3D85 !important;
}
.hero-cta .btn-secondary,
.btn-secondary {
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}
.hero-cta .btn-secondary:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}


/* ============ MOBILE NAV 햄버거 드롭다운 (2026-06-13) ============ */
@media (max-width: 768px) {
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    padding: 16px 24px 24px;
    background: rgba(10, 10, 10, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0;
    z-index: 99;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open a {
    color: #FFFFFF !important;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    letter-spacing: -0.01em;
  }
  .nav-links.open a:last-child {
    border-bottom: none;
  }
  .nav-links.open a:hover,
  .nav-links.open a:active {
    color: #FF1A6B !important;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-toggle span {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
}


/* ============ btn-ghost 다크 hero용 (2026-06-13) ============ */
.hero .btn-ghost,
.hero-cta .btn-ghost {
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
}
.hero .btn-ghost:hover,
.hero-cta .btn-ghost:hover {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}


/* ============ VERTICAL CAROUSEL (Vidsy 스타일) 2026-06-15 ============ */
.portfolio {
  background:
    radial-gradient(800px 550px at 50% 50%, rgba(220, 215, 200, 0.10) 0%, transparent 65%),
    radial-gradient(1400px 900px at 50% 50%, rgba(200, 195, 180, 0.04) 0%, transparent 70%),
    #0A0A0A !important;
  color: #fff !important;
  padding: 100px 0 80px !important;
  overflow: hidden;
}
.portfolio .sec-head .kicker {
  color: #FF1A6B !important;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.portfolio .sec-head h2 {
  color: #fff !important;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.portfolio .sec-head h2 .hl { color: #FF1A6B !important; }
.portfolio .sec-head p {
  color: rgba(255,255,255,0.6) !important;
  margin-top: 12px;
}

.vc-wrap {
  position: relative;
  margin: 60px auto 0;
  max-width: 1600px;
  padding: 0 24px;
}

/* 가운데 영상 주변에 따뜻한 글로우 (사용자 좋아하는 톤) */
.vc-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    rgba(220, 215, 200, 0.12) 0%,
    rgba(200, 195, 180, 0.05) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vc-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 540px;
  perspective: 1200px;
  z-index: 1;
}

.vc-card {
  position: absolute;
  width: 290px;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1f;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(.22,.9,.18,1),
              opacity 0.4s ease,
              filter 0.4s ease,
              box-shadow 0.4s ease;
  will-change: transform, opacity;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}
.vc-card video, .vc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.vc-card-label {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  pointer-events: none;
}
.vc-card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 64px; height: 64px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.vc-card.active .vc-card-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.vc-card.active:hover .vc-card-play { background: #FF1A6B; border-color: #FF1A6B; }

/* 활성 카드 — 가운데 크게 */
.vc-card.active {
  transform: translateX(0) scale(1.08);
  z-index: 5;
  opacity: 1;
  filter: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.06);
}

/* 양옆 -1 / +1 */
.vc-card.prev1 {
  transform: translateX(-340px) scale(0.85);
  z-index: 4;
  opacity: 0.55;
  filter: blur(0.5px);
}
.vc-card.next1 {
  transform: translateX(340px) scale(0.85);
  z-index: 4;
  opacity: 0.55;
  filter: blur(0.5px);
}

/* 양옆 -2 / +2 */
.vc-card.prev2 {
  transform: translateX(-620px) scale(0.7);
  z-index: 3;
  opacity: 0.25;
  filter: blur(1px);
}
.vc-card.next2 {
  transform: translateX(620px) scale(0.7);
  z-index: 3;
  opacity: 0.25;
  filter: blur(1px);
}

/* 나머지 숨김 */
.vc-card.hide {
  transform: translateX(0) scale(0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* 카테고리 라벨 탭 (< > 대신 클릭 가능한 라벨 행) */
.vc-tabs-wrap {
  margin-top: 36px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vc-tabs-wrap::-webkit-scrollbar { display: none; }
.vc-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.vc-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.vc-tab:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.vc-tab.active {
  background: #FF1A6B;
  color: #fff;
  border-color: #FF1A6B;
  box-shadow: 0 4px 16px rgba(255, 26, 107, 0.35);
}

/* 점 인디케이터 — 데스크탑에선 보조, 모바일에선 메인 */
.vc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.vc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.vc-dot:hover { background: rgba(255,255,255,0.4); }
.vc-dot.active {
  background: #FF1A6B;
  width: 24px;
  border-radius: 999px;
}

/* ─── 모달 (클릭 시 full 영상 + 소리) ─── */
.vc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.vc-modal.open {
  display: flex;
  opacity: 1;
}
.vc-modal-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.vc-modal-close:hover {
  background: #FF1A6B;
  border-color: #FF1A6B;
  transform: rotate(90deg);
}
.vc-modal-inner {
  max-width: min(90vw, 480px);
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
#vcModalVideo {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
}

/* ====== 모바일 (768px 이하) ====== */
@media (max-width: 768px) {
  .portfolio { padding: 60px 0 60px !important; }
  .vc-wrap { margin-top: 32px; padding: 0; }
  .vc-glow {
    width: 90vw;
    height: 60vh;
  }
  .vc-stage {
    height: 70vh;
    max-height: 580px;
    gap: 0;
  }
  .vc-card { width: 78vw; max-width: 340px; border-radius: 8px; }
  .vc-card.active {
    transform: translateX(0) scale(1);
  }
  .vc-card.prev1 {
    transform: translateX(-88vw) scale(0.88);
    opacity: 0.5;
  }
  .vc-card.next1 {
    transform: translateX(88vw) scale(0.88);
    opacity: 0.5;
  }
  .vc-card.prev2, .vc-card.next2 {
    opacity: 0;
    transform: translateX(0) scale(0.6);
  }
  .vc-tabs-wrap {
    overflow-x: auto;
    margin-top: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .vc-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 20px;
  }
  .vc-tab { font-size: 12px; padding: 8px 14px; flex-shrink: 0; }
  .vc-dots { margin-top: 16px; }
  .vc-modal-inner { max-width: 100vw; aspect-ratio: auto; height: auto; max-height: 80vh; }
  .vc-modal-close { top: 16px; right: 16px; width: 44px; height: 44px; }
}


/* ============ 캐러셀 ▶ 버튼 숨김 (방해됨) 2026-06-15 ============ */
.vc-card-play { display: none !important; }


/* ============ STRENGTHS 섹션 다크 모드 (위/아래와 톤 통일) 2026-06-15 ============ */
.strengths {
  background:
    radial-gradient(800px 550px at 50% 50%, rgba(220, 215, 200, 0.10) 0%, transparent 65%),
    radial-gradient(1400px 900px at 50% 50%, rgba(200, 195, 180, 0.04) 0%, transparent 70%),
    #0A0A0A !important;
  color: #fff !important;
  padding: 100px 0 !important;
}

.strength-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  transition: transform 0.25s, background 0.25s, border-color 0.25s !important;
}

.strength-card:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 26, 107, 0.45) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 26, 107, 0.12) !important;
}

.strength-card h3 {
  color: #fff !important;
}

.strength-card p {
  color: rgba(255, 255, 255, 0.62) !important;
}

.strength-card .card-link {
  color: #FF1A6B !important;
  font-weight: 600;
}
.strength-card .card-link:hover {
  color: #FF3D85 !important;
}

/* 핑크 강조 카드 (촬영부담 ZERO) — 보라 → 핑크로 교체 */
.strength-card.highlight {
  background: linear-gradient(135deg, #FF1A6B 0%, #C70055 100%) !important;
  border: none !important;
}
.strength-card.highlight:hover {
  background: linear-gradient(135deg, #FF3D85 0%, #FF1A6B 100%) !important;
  border: none !important;
  box-shadow: 0 12px 32px rgba(255, 26, 107, 0.35) !important;
}
.strength-card.highlight h3,
.strength-card.highlight p,
.strength-card.highlight b,
.strength-card.highlight .card-link {
  color: #fff !important;
}


/* ============ 강점 카드 .ico SVG 친화 (2026-06-15) ============ */
.strength-card .ico {
    font-size: 0 !important;
    line-height: 0 !important;
    margin-bottom: 18px !important;
    color: rgba(255, 255, 255, 0.95) !important;
}
.strength-card .ico svg {
    width: 44px !important;
    height: 44px !important;
    display: block;
    color: inherit;
}
.strength-card.highlight .ico {
    color: #FFFFFF !important;
}


/* ============ PROCESS + PARTNER 다크 통일 (2026-06-15) ============ */
.process {
    background:
        radial-gradient(800px 550px at 50% 50%, rgba(220, 215, 200, 0.10) 0%, transparent 65%),
        radial-gradient(1400px 900px at 50% 50%, rgba(200, 195, 180, 0.04) 0%, transparent 70%),
        #0A0A0A !important;
    color: #fff !important;
}
.partner {
    background:
        radial-gradient(800px 550px at 50% 50%, rgba(220, 215, 200, 0.10) 0%, transparent 65%),
        radial-gradient(1400px 900px at 50% 50%, rgba(200, 195, 180, 0.04) 0%, transparent 70%),
        #0A0A0A !important;
    color: #fff !important;
}

/* 섹션 헤더 핑크 키커 + 흰 타이틀 */
.process .sec-head .kicker,
.partner .sec-head .kicker {
    color: #FF1A6B !important;
}
.process .sec-head h2,
.partner .sec-head h2 {
    color: #fff !important;
}
.process .sec-head h2 .hl,
.partner .sec-head h2 .hl {
    color: #FF1A6B !important;
}
.process .sec-head p,
.partner .sec-head p {
    color: rgba(255,255,255,0.6) !important;
}

/* PROCESS 카드 다크 */
.proc-step {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    transition: transform 0.25s, background 0.25s, border-color 0.25s !important;
}
.proc-step:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 26, 107, 0.45) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 26, 107, 0.12) !important;
}
.proc-step h4 { color: #fff !important; }
.proc-step p { color: rgba(255, 255, 255, 0.62) !important; }

/* 01~05 step number — 길쭉 + 이탤릭 + 핑크 */
.proc-num {
    font-size: 56px !important;
    font-weight: 900 !important;
    font-style: italic !important;
    color: #FF1A6B !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.05em !important;
    line-height: 1 !important;
    transform: scaleY(1.25) translateY(6px);
    transform-origin: left top;
    display: inline-block;
    font-family: 'Inter', 'Pretendard Variable', sans-serif !important;
}

/* PARTNER 카드 다크 */
.partner-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    transition: transform 0.25s, background 0.25s, border-color 0.25s !important;
}
.partner-card:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 26, 107, 0.45) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 26, 107, 0.12) !important;
}
.partner-card h4 { color: #fff !important; }
.partner-card p { color: rgba(255, 255, 255, 0.62) !important; }

/* 파트너 카드 SVG 아이콘 친화 */
.pcard-ico {
    font-size: 0 !important;
    line-height: 0 !important;
    margin-bottom: 18px !important;
    color: rgba(255, 255, 255, 0.95) !important;
}
.pcard-ico svg {
    width: 44px !important;
    height: 44px !important;
    display: inline-block;
    color: inherit;
}

/* 파트너 CTA 핑크 */
.partner-cta .btn-primary {
    background: #FF1A6B !important;
    color: #fff !important;
    border-color: #FF1A6B !important;
}
.partner-cta .btn-primary:hover {
    background: #FF3D85 !important;
    border-color: #FF3D85 !important;
}


/* ============ SERVICE + CONTACT + PRICE 다크 통일 (2026-06-15) ============ */

/* SERVICE 섹션 */
.service {
    background:
        radial-gradient(800px 550px at 50% 50%, rgba(220, 215, 200, 0.10) 0%, transparent 65%),
        radial-gradient(1400px 900px at 50% 50%, rgba(200, 195, 180, 0.04) 0%, transparent 70%),
        #0A0A0A !important;
    color: #fff !important;
}
.service .sec-head .kicker { color: #FF1A6B !important; }
.service .sec-head h2 { color: #fff !important; }
.service .sec-head h2 .hl { color: #FF1A6B !important; }
.service .sec-head p { color: rgba(255,255,255,0.6) !important; }
.service .svc-left h3 { color: #fff !important; }
.service .svc-list li { color: rgba(255,255,255,0.7) !important; }
.service .svc-list li::before {
    background-color: #FF1A6B !important;
}
.service .svc-note {
    background: rgba(255,255,255,0.04) !important;
    border-left: 3px solid #FF1A6B !important;
    color: rgba(255,255,255,0.7) !important;
}
.service .svc-note b { color: #fff !important; }

/* PRICE 카드 — 보라 그라디언트 → 핑크 */
.price-card {
    background: linear-gradient(135deg, #FF1A6B 0%, #C70055 100%) !important;
    color: #fff !important;
}
.price-card .btn-primary {
    background: #fff !important;
    color: #FF1A6B !important;
}
.price-card .btn-primary:hover {
    background: #FFF0F5 !important;
    color: #C70055 !important;
}
.price-card .price-tag {
    background: rgba(255, 255, 255, 0.2) !important;
}
.price-card .price-sep {
    background: rgba(255, 255, 255, 0.25) !important;
}

/* CONTACT 섹션 */
.contact {
    background:
        radial-gradient(800px 550px at 50% 50%, rgba(220, 215, 200, 0.10) 0%, transparent 65%),
        radial-gradient(1400px 900px at 50% 50%, rgba(200, 195, 180, 0.04) 0%, transparent 70%),
        #0A0A0A !important;
    color: #fff !important;
}
.contact .sec-head .kicker { color: #FF1A6B !important; }
.contact .sec-head h2 { color: #fff !important; }
.contact .sec-head h2 .hl { color: #FF1A6B !important; }
.contact .sec-head p { color: rgba(255,255,255,0.6) !important; }
.contact .contact-note { color: rgba(255,255,255,0.5) !important; }

/* CONTACT 폼 — 다크 카드 */
.contact-form {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.contact-form label > span {
    color: #fff !important;
    font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #FF1A6B !important;
    box-shadow: 0 0 0 3px rgba(255, 26, 107, 0.18) !important;
    background: rgba(255, 255, 255, 0.07) !important;
}
.contact-form select option { background: #1a1a22; color: #fff; }


/* ============ price-card 색 반전 (2026-06-15) ============ */
/* 흰 배경 + 검은 글씨 + 핑크 버튼 */
.price-card {
    background: #ffffff !important;
    color: #15161B !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4) !important;
}
.price-card .price-tag {
    background: rgba(255, 26, 107, 0.12) !important;
    color: #FF1A6B !important;
    border: 1px solid rgba(255, 26, 107, 0.3) !important;
}
.price-card h3,
.price-card .price-amount,
.price-card .price-amount .num,
.price-card .price-amount .unit,
.price-card .price-line,
.price-card .price-line b {
    color: #15161B !important;
}
.price-card .price-sub {
    color: #6B7280 !important;
    opacity: 1 !important;
}
.price-card .price-sep {
    background: rgba(0, 0, 0, 0.08) !important;
}
/* 지금 제작 문의 버튼 — 핑크 */
.price-card .btn-primary {
    background: #FF1A6B !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(255, 26, 107, 0.35) !important;
}
.price-card .btn-primary:hover {
    background: #FF3D85 !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(255, 26, 107, 0.5) !important;
}
/* 포트폴리오 보기 링크 (price-card 안) */
.price-card a:not(.btn-primary) {
    color: #6B7280 !important;
}
.price-card a:not(.btn-primary):hover {
    color: #FF1A6B !important;
}


/* ============ proc-num 작게 조정 (2026-06-15) ============ */
.proc-num {
    font-size: 38px !important;
    transform: scaleY(1.15) translateY(2px) !important;
    margin-bottom: 14px !important;
}


/* ============ 카톡 문의 버튼 A + B (2026-06-15) ============ */
/* A — 폼 안 보조 링크 */
.kakao-form-link {
    margin-top: 14px;
}
.kakao-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}
.kakao-divider::before,
.kakao-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.btn-kakao-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #FEE500;
    border: 1.5px solid #FEE500;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-kakao-outline:hover {
    background: #FEE500;
    color: #3C1E1E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 229, 0, 0.3);
}

/* B — 플로팅 카톡 버튼 (페이지 우하단 고정) */
.kakao-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    background: #FEE500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(254, 229, 0, 0.6);
    z-index: 9998;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: kakao-pulse 2.4s ease-out infinite;
}
.kakao-fab:hover {
    transform: scale(1.08);
    animation: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(254, 229, 0, 0.2);
}
.kakao-fab-tip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: #14141a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
}
.kakao-fab:hover .kakao-fab-tip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}
@keyframes kakao-pulse {
    0%   { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(254, 229, 0, 0.55); }
    70%  { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 14px rgba(254, 229, 0, 0); }
    100% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(254, 229, 0, 0); }
}

@media (max-width: 768px) {
    .kakao-fab { right: 16px; bottom: 16px; width: 56px; height: 56px; }
    .kakao-fab-tip { display: none; }
}


/* ============ 핑크 강조 절제 (2026-06-15) ============ */

/* 1. 모든 섹션 제목의 .hl (숏폼 홍보영상, 1/4 가격, 순간, 5단계, 확장, 바로 제작) → 흰색 */
.hero h1 .hl,
.portfolio .sec-head h2 .hl,
.process .sec-head h2 .hl,
.partner .sec-head h2 .hl,
.contact .sec-head h2 .hl,
.service .sec-head h2 .hl,
.strengths .sec-head h2 .hl {
    color: #FFFFFF !important;
}

/* 2. 자료부담 ZERO 카드 — 핑크 그라디언트 → 다크 카드 (옆 카드들과 동일) */
.strength-card.highlight {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.strength-card.highlight:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 26, 107, 0.45) !important;
    box-shadow: 0 8px 24px rgba(255, 26, 107, 0.12) !important;
}
.strength-card.highlight h3 { color: #fff !important; }
.strength-card.highlight p { color: rgba(255, 255, 255, 0.62) !important; }
.strength-card.highlight b { color: #fff !important; }
.strength-card.highlight .card-link { color: #FF1A6B !important; }
.strength-card.highlight .card-link:hover { color: #FF3D85 !important; }
/* .ico 도 옆 카드들과 동일하게 95% 흰색 */
.strength-card.highlight .ico { color: rgba(255, 255, 255, 0.95) !important; }

/* 3. 포함내용 체크 박스 — 핑크 → 흰색 박스에 검은 체크 */
.svc-list li::before {
    background-color: #FFFFFF !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%2315161B' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") !important;
}

/* 4. 01~05 step number 핑크 → 밝은 회색 */
.proc-num {
    color: rgba(255, 255, 255, 0.55) !important;
}


/* ============ svc-list 체크 — 박스 제거, 흰색 V만 (2026-06-15) ============ */
.svc-list li::before {
    background-color: transparent !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23FFFFFF' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") !important;
    background-size: 18px !important;
    border-radius: 0 !important;
}


/* ============ svc-list 체크박스 완전 제거 — .service 까지 (2026-06-15) ============ */
.service .svc-list li::before,
.svc-list li::before {
    background: transparent !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23FFFFFF' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 18px !important;
    border-radius: 0 !important;
}


/* ============ price-card 제거 후 svc-grid 1열 (2026-06-15) ============ */
.svc-grid {
    grid-template-columns: 1fr !important;
}


/* ============ proc-num → 옅은 핑크 (2026-06-15) ============ */
.proc-num {
    color: rgba(255, 26, 107, 0.55) !important;
}


/* ============ proc-num → 밝고 연한 핑크 (2026-06-15) ============ */
.proc-num {
    color: #FFB6D5 !important;
    opacity: 0.9 !important;
}


/* ============ 언어 토글 (KO/EN) ============ */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 24px;
}
.lang-btn {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.15s ease;
    text-decoration: none;
    letter-spacing: 0.05em;
}
.lang-btn:hover { color: rgba(255,255,255,0.8); }
.lang-btn.active { color: #FF1A6B; }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 12px; }
@media (max-width: 768px) {
    .lang-toggle { margin-right: 12px; }
    .lang-btn { font-size: 12px; padding: 3px 4px; }
}


/* ============ 언어 드롭다운 (7개 언어) ============ */
.lang-dropdown {
    position: relative;
    margin-right: 24px;
}
.lang-current {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: all 0.15s ease;
}
.lang-current:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.lang-current svg { opacity: 0.6; }
.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #14141a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    list-style: none;
    padding: 6px 0;
    min-width: 140px;
    margin: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
    z-index: 100;
}
.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-menu li { margin: 0; }
.lang-menu a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.12s ease;
}
.lang-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.lang-menu a.active {
    color: #FF1A6B;
    font-weight: 700;
}
@media (max-width: 768px) {
    .lang-dropdown { margin-right: 12px; }
    .lang-current { font-size: 12px; padding: 5px 8px; }
}
