/* ==========================================================================
   Brandify — High-Authority Minimalism (Light)
   Shared design system. Loaded by every page.
   ========================================================================== */

/* ---- Fonts ---------------------------------------------------------------- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap");

/* ---- Tokens --------------------------------------------------------------- */
:root {
  --brand: #6020ff;
  --brand-dark: #4c17e6;
  --brand-rgb: 96, 32, 255;
  --blue: var(--brand);
  --blue-dark: var(--brand-dark);
  --blue-tint: rgba(var(--brand-rgb), 0.07);
  --blue-tint-strong: rgba(var(--brand-rgb), 0.14);

  --ink: #181b20;
  --ink-80: rgba(24, 27, 32, 0.80);
  --ink-60: rgba(24, 27, 32, 0.58);
  --ink-40: rgba(24, 27, 32, 0.40);
  --ink-25: rgba(24, 27, 32, 0.22);

  --white: #ffffff;
  --gray: #f4f5f7;
  --gray-2: #e2e5ea;
  --line: rgba(18, 20, 23, 0.10);
  --line-strong: rgba(18, 20, 23, 0.16);

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-pill: 999px;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 44px);
  --section: clamp(48px, 5.5vw, 72px);

  --font-display: "Pretendard", system-ui, sans-serif;
  --font-body: "Pretendard", system-ui, sans-serif;
  --font-kr: "Pretendard", system-ui, sans-serif;
  --font-en: "Montserrat", "Pretendard", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Page-level YouTube Course Theme Overrides */
.page-course {
  --brand: #6020ff;
  --brand-dark: #4c17e6;
  --brand-rgb: 96, 32, 255;
}

/* Dark theme overrides for primary color readability */
.bg-ink,
.hero--photo,
.hero--dark-statement,
.product-film-hero,
.product-showreel,
.nav.is-over-dark {
  --blue: #8c52ff;
}

/* Course page dark section readability overrides */
.page-course .bg-ink,
.page-course .hero--photo,
.page-course .hero--dark-statement,
.page-course .product-film-hero,
.page-course .product-showreel,
.page-course .nav.is-over-dark {
  --blue: #8c52ff;
}


/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.product-modal-open {
  overflow: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--blue); color: #fff; }

/* ---- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }
.bg-gray { background: var(--gray); }
.bg-gray-2 { background: var(--gray-2); }
.bg-ink {
  background:
    radial-gradient(ellipse 54% 70% at 50% 50%, rgba(96,32,255,.20) 0%, rgba(68,18,154,.12) 34%, rgba(96,32,255,0) 68%),
    linear-gradient(180deg, #15131b 0%, #151820 100%);
  color: #fff;
  position: relative;
}
.bg-ink::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000, transparent 76%);
  mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000, transparent 76%);
}
.bg-ink > .wrap { position: relative; z-index: 1; }
.divider-y { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.divider-t { border-top: 1px solid var(--line); }

/* ---- Typography ----------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: 0;
  word-break: keep-all;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  line-height: 1.16;
  letter-spacing: 0;
  word-break: keep-all;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: 0;
  word-break: keep-all;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--ink-60);
  word-break: keep-all;
}
.body { font-size: 1rem; line-height: 1.75; color: var(--ink-60); word-break: keep-all; }
.eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.stat__num,
.step__num,
.hero__meta span,
.product-film-hero__meta span,
.product-value__item strong,
.result-card__num {
  font-family: var(--font-en);
}
.eyebrow--muted { color: var(--ink-40); }
.kr { font-family: var(--font-kr); }
.blue { color: var(--blue); }
.muted { color: var(--ink-60); }

/* keyword highlight — electric blue underline behind text */
.mark {
  position: relative;
  display: inline;
  z-index: 0;
  white-space: nowrap;
}
.mark::after {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em;
  bottom: 0.06em;
  height: 0.34em;
  background: var(--blue);
  opacity: 0.22;
  z-index: -1;
  border-radius: 2px;
}
.mark--solid { color: var(--blue); }
.mark--solid::after { display: none; }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(18,20,23,0.03); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--blue); color: #fff; }
.btn--lg { padding: 1.15em 2.2em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Nav ------------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .22s var(--ease), border-color .22s var(--ease), backdrop-filter .22s var(--ease), color .22s var(--ease);
}
/* Fixed navigation overlay for cinematic/photo hero pages */
body.home .nav,
.page-product-cinema .nav,
body:has(.svc-film-hero) .nav,
body:has(.hero--photo) .nav,
body:has(.product-film-hero) .nav {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

/* Nav theme follows the section underneath it */
.nav.is-over-dark {
  background: rgba(18,20,23,0.26);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom-color: rgba(255,255,255,0.10);
  color: #fff;
  transition: background .22s var(--ease), border-color .22s var(--ease), backdrop-filter .22s var(--ease), color .22s var(--ease);
}
.nav.is-over-dark .brand,
.nav.is-over-dark .nav__link,
.nav.is-over-dark .nav__link--parent {
  color: #fff;
  transition: color .22s var(--ease), opacity .22s var(--ease);
}
.nav.is-over-dark .nav__link,
.nav.is-over-dark .nav__link--parent { opacity: .88; }
.nav.is-over-dark .nav__link:hover,
.nav.is-over-dark .nav__link.is-active,
.nav.is-over-dark .nav__link--parent:hover,
.nav.is-over-dark .nav__link--parent.is-active { color: #fff; opacity: 1; }
.nav.is-over-dark .nav__link::after,
.nav.is-over-dark .nav__link--parent::after { background: #fff; }
.nav.is-over-dark .nav__burger span,
.nav.is-over-dark .nav__burger span::before,
.nav.is-over-dark .nav__burger span::after { background: #fff; }

.nav.is-over-light {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
  transition: background .22s var(--ease), border-color .22s var(--ease), backdrop-filter .22s var(--ease), color .22s var(--ease);
}
.nav.is-over-light .brand,
.nav.is-over-light .nav__link,
.nav.is-over-light .nav__link--parent,
.nav.is-over-light .nav__link.is-active,
.nav.is-over-light .nav__link--parent.is-active {
  color: var(--ink);
  opacity: 1;
  transition: color .22s var(--ease), opacity .22s var(--ease);
}
.nav.is-over-light .nav__link::after,
.nav.is-over-light .nav__link--parent::after { background: var(--blue); }
.nav.is-over-light .nav__burger span,
.nav.is-over-light .nav__burger span::before,
.nav.is-over-light .nav__burger span::after { background: var(--ink); }

/* Home nav — mobile menu open */
body.menu-open .nav {
  background: #fff;
  color: var(--ink);
  border-bottom-color: var(--line);
}
body.menu-open .nav .brand,
body.menu-open .nav .nav__link,
body.menu-open .nav .nav__link--parent { color: var(--ink); opacity: 1; }
body.menu-open .nav__burger span::before,
body.menu-open .nav__burger span::after { background: var(--ink); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-kr);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-right: clamp(16px, 2.5vw, 36px);
  flex-shrink: 0;
}
.brand__mark {
  display: block;
  width: 30px;
  height: 37px;
  flex-shrink: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: url("img/brandify-bi.png") center / contain no-repeat;
  transform: translateY(-2px);
}
.nav.is-over-dark .brand__mark {
  filter: brightness(1.55) saturate(1.3) drop-shadow(0 2px 8px rgba(140, 82, 255, 0.4));
}
.nav__links {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0;
  flex: 1;
}
.nav__item {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-kr);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-60);
  padding: 0 clamp(8px, 1.1vw, 16px);
  height: 100%;
  position: relative;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: clamp(8px,1.1vw,16px); right: clamp(8px,1.1vw,16px); bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--blue); }
.nav__link.is-active::after { transform: scaleX(1); }

/* Parent button (dropdown trigger) */
.nav__link--parent {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-kr); font-weight: 700; font-size: 0.88rem;
  color: var(--ink-60); padding: 0 clamp(8px,1.1vw,16px); height: 100%;
  position: relative; white-space: nowrap;
  background: none; border: none; cursor: pointer;
  transition: color .2s var(--ease);
}
.nav__link--parent::after {
  content: ""; position: absolute;
  left: clamp(8px,1.1vw,16px); right: clamp(8px,1.1vw,16px); bottom: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link--parent:hover { color: var(--ink); }
.nav__link--parent:hover::after { transform: scaleX(1); }
.nav__link--parent.is-active { color: var(--blue); }
.nav__link--parent.is-active::after { transform: scaleX(1); }

.nav__chevron { transition: transform .2s var(--ease); flex-shrink: 0; }
.nav__item--has-drop:hover .nav__chevron,
.nav__item--has-drop.is-open .nav__chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 56px rgba(18,20,23,.13), 0 4px 12px rgba(18,20,23,.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 200;
  overflow: hidden;
}
.nav__item--has-drop:hover .nav__dropdown,
.nav__item--has-drop.is-open .nav__dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}

/* Standard list dropdown */
.nav__dropdown--list {
  min-width: 180px;
  padding: 7px;
}
.nav__drop-item {
  display: block;
  padding: 9px 12px;
  font-family: var(--font-kr); font-weight: 600; font-size: .88rem;
  color: var(--ink-80);
  border-radius: var(--r-sm);
  white-space: nowrap;
  text-decoration: none;
  transition: background .14s var(--ease), color .14s var(--ease);
}
.nav__drop-item:hover { background: var(--gray); color: var(--blue); }
.nav__drop-item--head {
  font-size: .78rem; font-weight: 700;
  color: var(--ink-40); letter-spacing: .04em;
}
.nav__drop-item--head:hover { background: transparent; color: var(--blue); }
.nav__drop-divider { height: 1px; background: var(--line); margin: 5px 4px; }

/* Nav right (CTA + burger) */
.nav__right {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto; flex-shrink: 0;
}
.btn--sm { padding: 0.65em 1.2em; font-size: 0.84rem; }
.nav__cta-btn { display: none; } /* shown only on desktop via media query */

.nav__burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav__burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  position: relative; transition: .25s var(--ease);
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
  transition: .25s var(--ease);
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu panel */
.nav__mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: calc(100vh - 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px var(--gutter) 108px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: .28s var(--ease);
  z-index: 99;
}
body.menu-open .nav__mobile { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav__mobile > a,
.nav__mobile-parent {
  font-family: var(--font-kr); font-weight: 600; font-size: 1.05rem;
  padding: 14px 4px; border-bottom: 1px solid var(--line);
  color: var(--ink-80);
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none;
}
.nav__mobile > a.is-active,
.nav__mobile-parent.is-active { color: var(--blue); }
.nav__mobile .btn {
  margin-top: 18px; color: #fff; justify-content: center; border-bottom: none;
}
/* Mobile accordion */
.nav__mobile-group { display: flex; flex-direction: column; }
.nav__mobile-parent {
  background: none; border: none; border-bottom: 1px solid var(--line);
  width: 100%; text-align: left; cursor: pointer;
}
.nav__mobile-parent .nav__chevron { flex-shrink: 0; }
.nav__mobile-parent.is-open .nav__chevron { transform: rotate(180deg); }
.nav__mobile-sub {
  display: none; flex-direction: column;
  background: var(--gray);
}
.nav__mobile-sub.is-open { display: flex; }
.nav__mobile-sub a {
  font-size: .95rem !important;
  padding-left: 22px !important;
  color: var(--ink-60) !important;
}
/* ---- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(58px, 8.5vw, 112px);
  overflow: hidden;
}
.hero--photo {
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  background: var(--ink);
  padding-block: clamp(100px, 11vw, 130px) clamp(240px, 26vw, 300px);
}
.hero--reference .hero__inner { padding-top: 10px; }
.hero--reference .eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  color: rgba(255,255,255,.96);
  text-shadow: 0 10px 30px rgba(0,0,0,.6);
}
.hero--photo.hero--reference .display {
  margin-top: 10px;
  font-size: clamp(2.4rem, 4.0vw, 3.6rem);
  line-height: 1.12;
  max-width: 800px;
  color: #fff;
  text-shadow: 0 18px 58px rgba(0,0,0,.72);
}
.hero--photo.hero--reference .lead {
  max-width: 760px;
  margin-top: 30px;
  font-size: clamp(1.06rem, 1.28vw, 1.2rem);
  line-height: 1.72;
  color: rgba(255,255,255,.92);
  text-shadow: 0 12px 34px rgba(0,0,0,.72);
}
.hero--reference .hero__meta {
  max-width: 780px;
  gap: 10px;
  margin-top: 26px;
}
.hero--reference .hero__meta span {
  background: rgba(9,11,16,.58);
  border-color: rgba(255,255,255,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 16px 40px rgba(0,0,0,.18);
  color: rgba(255,255,255,.94);
  font-size: .88rem;
  padding: 9px 13px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero--reference .hero__cta {
  margin-top: 34px;
}


/* Eyebrow accent */
.hero--reference .eyebrow {
  font-size: 0.82rem;
}
.hero--reference .eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.hero--photo .hero__inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.hero--photo .eyebrow { color: #fff; opacity: .78; }
.hero--photo .display { color: #fff; max-width: 600px; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.15; }
.hero--photo .lead { color: rgba(255,255,255,.78); max-width: 580px; }
.hero--photo .mark { color: #fff; }
.hero--photo .mark::after { background: var(--blue); opacity: .78; }
.hero--photo .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.06);
}
.hero--photo .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
}
.hero__bg,
.hero__shade {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--reference .hero__bg img {
  object-position: 68% center;
  filter: saturate(.92) contrast(1.08);
}
.hero__shade {
  background:
    linear-gradient(90deg, rgba(14,16,20,.80) 0%, rgba(14,16,20,.66) 38%, rgba(14,16,20,.24) 72%, rgba(14,16,20,.42) 100%),
    linear-gradient(180deg, rgba(14,16,20,.36) 0%, rgba(14,16,20,.36) 100%);
}
.hero--reference .hero__shade {
  background:
    radial-gradient(circle at 20% 42%, rgba(140,82,255,.24), rgba(140,82,255,0) 31%),
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.09), rgba(255,255,255,0) 23%),
    linear-gradient(90deg, rgba(3,5,9,.96) 0%, rgba(3,5,9,.9) 38%, rgba(3,5,9,.42) 67%, rgba(3,5,9,.68) 100%),
    linear-gradient(180deg, rgba(3,5,9,.18) 0%, rgba(3,5,9,.7) 82%, rgba(3,5,9,1) 100%);
}
.hero__glow {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(18,20,23,0.06) 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 64% 56% at 50% 34%, #000 22%, transparent 72%);
  mask-image: radial-gradient(ellipse 64% 56% at 50% 34%, #000 22%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.hero--photo .hero__cta { justify-content: flex-start; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero__meta span {
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,.84);
}

/* ---- Dark statement hero (전문직) ----------------------------------------- */
.hero--dark-statement {
  background: var(--ink);
  padding-block: clamp(72px, 11vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero--dark-statement::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  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: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 50%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 75% at 50% 50%, #000, transparent 72%);
}
.hero--dark-statement .hero__inner { position: relative; z-index: 1; text-align: left; }
.hero--dark-statement .display {
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  line-height: 1.12;
}

/* ---- Service split hero -------------------------------------------------- */
.svc-hero {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.svc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 130px);
}
.svc-hero__body .eyebrow { display: block; }
.svc-hero__body .display {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.14;
}
.svc-hero__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray);
  border: 1px solid var(--line);
}
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero__inner--rev .svc-hero__media { order: -1; }
@media (max-width: 860px) {
  .svc-hero__inner { grid-template-columns: 1fr; }
  .svc-hero__inner--rev .svc-hero__media { order: -1; }
  .svc-hero__media { aspect-ratio: 4 / 3; }
  .svc-hero__body .display { font-size: clamp(2rem, 6vw, 3rem); }
}

/* ---- Service cinematic hero ---------------------------------------------- */
.svc-film-hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.svc-film-hero__img,
.svc-film-hero__shade {
  position: absolute;
  inset: 0;
}
.svc-film-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.svc-film-hero__shade {
  background:
    linear-gradient(90deg, rgba(5,6,8,.82) 0%, rgba(5,6,8,.68) 42%, rgba(5,6,8,.22) 100%),
    radial-gradient(circle at 20% 54%, rgba(96,32,255,.24), transparent 34%);
}
.svc-film-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(110px, 13vh, 150px) clamp(70px, 9vh, 110px);
}
.svc-film-hero__copy {
  max-width: 680px;
}
.svc-film-hero__copy .eyebrow {
  color: rgba(255,255,255,.72);
}
.svc-film-hero__copy .display {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  line-height: 1.04;
  text-shadow: 0 18px 60px rgba(0,0,0,.42);
}
.svc-film-hero__copy .mark {
  color: #fff;
}
.svc-film-hero__copy .mark::after {
  background: var(--blue);
  opacity: .72;
}
.svc-film-hero__desc {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}
.svc-film-hero .hero__cta {
  justify-content: flex-start;
}
.svc-film-hero .btn--white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(12px);
}
.svc-film-hero .btn--white:hover {
  background: #fff;
  color: var(--ink);
}
@media (max-width: 720px) {
  .svc-film-hero { min-height: 78vh; min-height: 78svh; }
  .svc-film-hero__shade {
    background: linear-gradient(180deg, rgba(5,6,8,.82), rgba(5,6,8,.58));
  }
}

/* ---- Product video showcase --------------------------------------------- */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure {
  display: none !important;
}
.product-film-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--product-black);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.page-product-cinema {
  --product-accent: #5b21ff;
  --product-accent-dark: #4516d8;
  --product-black: #0d0d10;
  --product-light: #f3f4f6;
  --product-container: 1240px;
  --product-gutter: clamp(20px, 3.5vw, 44px);
  --font-product-display: "Pretendard", system-ui, sans-serif;
  --brand: var(--product-accent);
  --brand-dark: var(--product-accent-dark);
  --blue: var(--product-accent);
}
.page-product-cinema :is(
  .product-film-hero,
  .product-statement,
  .product-value,
  .product-process,
  .product-final-cta
) > .wrap {
  max-width: var(--product-container);
  padding-inline: var(--product-gutter);
}
.page-product-cinema .nav {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
.page-product-cinema .nav.is-over-dark {
  --blue: var(--product-accent);
}
.product-film-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1.05);
}
.product-film-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.58) 34%, rgba(0,0,0,.18) 66%, rgba(0,0,0,.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.12) 34%, rgba(0,0,0,.72) 100%);
}
.product-film-hero__grain {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.product-film-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding-top: clamp(104px, 10vh, 136px);
  padding-bottom: clamp(34px, 4vw, 54px);
}
.product-film-hero__copy {
  align-self: center;
  max-width: 640px;
  margin-inline: auto;
  padding-top: clamp(12px, 4vh, 48px);
  text-align: center;
}
.product-film-hero .eyebrow {
  color: rgba(255,255,255,.76);
}
.product-film-hero .display {
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-kr);
  font-size: clamp(3.2rem, 4.8vw, 5.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: 0 18px 60px rgba(0,0,0,.48);
}
.product-film-hero__leadline,
.product-film-hero__accent {
  display: block;
}
.product-film-hero__leadline {
  color: rgba(255,255,255,.62);
  font-size: 1em;
  font-weight: 200;
  line-height: 1.1;
}
.product-film-hero__accent {
  margin-top: .12em;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
}
.product-film-hero .lead {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(255,255,255,.65);
  text-shadow: 0 8px 32px rgba(0,0,0,.42);
}
.product-film-hero__desc {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255,255,255,.65);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.7;
  font-weight: 300;
  text-shadow: 0 8px 32px rgba(0,0,0,.42);
}
.product-film-hero .btn--white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.38);
  backdrop-filter: blur(12px);
}
.product-film-hero .btn--white:hover {
  background: #fff;
  color: var(--ink);
}
.product-film-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-self: end;
  margin-top: clamp(28px, 4vh, 48px);
}
.product-film-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  color: rgba(255,255,255,.48);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.product-film-hero__meta .is-live::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 0 4px rgba(255,45,45,.12);
}
.product-statement {
  min-height: 76svh;
  padding-block: clamp(96px, 10vw, 160px);
  background: var(--product-black);
  color: #fff;
  text-align: center;
  display: grid;
  align-items: center;
}
.product-statement .eyebrow {
  color: rgba(255,255,255,.48);
}
.product-statement__title {
  margin-top: 26px;
  font-family: var(--font-product-display);
  font-size: clamp(2.5rem, 4vw, 4.65rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}
.product-statement__title span {
  color: var(--product-accent);
}
.product-statement__copy {
  margin: 34px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,.58);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.75;
}
.product-tabs {
  margin-top: clamp(48px, 6vw, 80px);
}
.product-tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.product-tabs__btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  font-family: var(--font-kr);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.product-tabs__btn:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.product-tabs__btn.is-active {
  background: var(--product-accent);
  border-color: var(--product-accent);
  color: #fff;
}
.product-tabs__stage {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.product-tabs__desc {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-kr);
  font-size: .92rem;
  color: rgba(255,255,255,.62);
}
.product-tabs__frame {
  position: relative;
  height: clamp(420px, 58vh, 640px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.6);
  transition: height .3s var(--ease);
}
.product-tabs__frame.is-portrait {
  height: clamp(540px, 82vh, 800px);
}
.product-tabs__frame video {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
}
.product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(8,8,10,.92);
}
.product-modal.is-open {
  display: flex;
}
.product-modal__panel {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--product-black);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 48px);
}
.product-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.product-modal__close:hover {
  background: rgba(255,255,255,.18);
}
.product-modal .product-tabs {
  margin-top: 0;
}
.product-value {
  padding-block: clamp(88px, 7vw, 120px);
  background: var(--product-light);
  color: var(--ink);
}
.product-value__head {
  max-width: 940px;
}
.product-value__title {
  margin-top: 20px;
  font-family: var(--font-kr);
  font-size: clamp(2.45rem, 3.55vw, 4rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.product-value__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(56px, 5vw, 80px);
  border-top: 1px solid var(--line-strong);
}
.product-value__item {
  min-width: 0;
  padding: clamp(32px, 4vw, 54px) clamp(22px, 3vw, 40px) 0 0;
}
.product-value__item + .product-value__item {
  padding-left: clamp(22px, 3vw, 40px);
  border-left: 1px solid var(--line);
}
.product-value__item strong {
  display: block;
  color: var(--product-accent);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 6vw, 7rem);
  line-height: .9;
  letter-spacing: 0;
}
.product-value__item strong span {
  margin-left: 5px;
  color: var(--ink);
  font-family: var(--font-kr);
  font-size: .28em;
}
.product-value__item > span {
  display: block;
  margin-top: 26px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}
.product-value__item p {
  max-width: 290px;
  margin-top: 10px;
  color: var(--ink-60);
  line-height: 1.68;
}
.product-process {
  padding-block: clamp(96px, 10vw, 160px);
  background: var(--product-light);
  color: var(--ink);
}
.product-process .eyebrow {
  color: var(--product-accent);
}
.product-process__head {
  max-width: 1040px;
}
.product-process__title {
  margin-top: 20px;
  font-family: var(--font-kr);
  font-size: clamp(2.5rem, 3.8vw, 4.35rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.product-process__formats {
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(48px, 6vw, 80px);
}
.product-process__format {
  position: relative;
  flex: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px -36px rgba(24,27,32,.32);
}
.product-process__format video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-process__format--portrait {
  max-width: 220px;
  aspect-ratio: 9 / 16;
}
.product-process__format--wide {
  aspect-ratio: 16 / 9;
}
.product-process__format span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--font-kr);
  font-weight: 700;
  font-size: .76rem;
  color: #fff;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.product-process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-strong);
  list-style: none;
  padding-left: 0;
}
.product-process__list li {
  min-width: 0;
  padding: 30px clamp(18px, 2.4vw, 34px) 0 0;
}
.product-process__list li + li {
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 1px solid var(--line);
}
.product-process__list li:nth-child(4) {
  padding-left: 0;
  border-left: 0;
}
.product-process__list li:nth-child(n+4) {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.product-process__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--product-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 800;
}
.product-process__list strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}
.product-process__tag {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 8px;
  transform: translateY(-1px);
  font-family: var(--font-kr);
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: var(--product-accent);
  border: 1px solid var(--product-accent);
  border-radius: var(--r-pill);
  padding: 5px 8px;
}
.product-process__list p {
  margin-top: 12px;
  color: var(--ink-60);
  line-height: 1.68;
  word-break: keep-all;
}
.product-final-cta {
  position: relative;
  padding-block: clamp(88px, 9vw, 132px);
  background: var(--product-black);
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.product-final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 62vw);
  height: min(760px, 62vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(91,33,255,.26) 0%, rgba(91,33,255,.16) 38%, rgba(91,33,255,0) 68%);
  pointer-events: none;
}
.product-final-cta .eyebrow {
  color: rgba(255,255,255,.62);
}
.product-final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.product-final-cta__title {
  margin-top: 24px;
  font-family: var(--font-kr);
  font-size: clamp(2.5rem, 3.8vw, 4.35rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.product-final-cta__copy {
  max-width: 650px;
  margin: 30px auto 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}
.product-final-cta .hero__cta {
  margin-top: 40px;
}
.product-final-cta .btn--white {
  background: #fff;
  border-color: #fff;
  color: var(--product-black);
}
.product-final-cta .btn--white:hover {
  background: rgba(255,255,255,.86);
  color: var(--product-black);
}
.product-final-cta .btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.product-final-cta .btn--ghost:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.product-showreel {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #05070a;
  box-shadow: 0 28px 80px -44px rgba(0, 0, 0, 0.75);
}
.product-showreel--hero {
  border-color: rgba(0, 0, 0, 0.18);
}
.product-showreel__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.58), transparent 34%, rgba(0,0,0,.72)),
    radial-gradient(circle at 72% 22%, rgba(65,0,248,.22), transparent 34%);
  pointer-events: none;
}
.product-showreel__top,
.product-showreel__caption {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}
.product-showreel__top {
  top: clamp(14px, 2.4vw, 22px);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(255,255,255,.76);
}
.product-showreel__caption {
  bottom: clamp(16px, 3vw, 28px);
  align-items: flex-end;
}
.product-showreel__caption strong {
  font-family: var(--font-kr);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
}
.product-showreel__caption span {
  max-width: 260px;
  text-align: right;
  font-family: var(--font-kr);
  font-size: .78rem;
  color: rgba(255,255,255,.66);
  line-height: 1.55;
}
.product-showreel__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(54px, 7vw, 72px);
  height: clamp(54px, 7vw, 72px);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.product-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}
.product-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.product-video-card__media {
  aspect-ratio: 16 / 9;
  background: #05070a;
  overflow: hidden;
}
.product-video-card--vertical .product-video-card__media {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(65,0,248,.26), transparent 28%),
    #07090d;
}
.product-video-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-video-card--vertical .product-video-card__media video {
  width: auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}
.product-video-card__body {
  padding: clamp(20px, 2.4vw, 28px);
}
.product-video-card__body > span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--blue);
}
.product-video-card__body .h3 { margin-bottom: 10px; }
@media (max-width: 860px) {
  .product-film-hero {
    min-height: 92vh;
    min-height: 92svh;
  }
  .product-film-hero__inner {
    min-height: 92vh;
    min-height: 92svh;
    padding-top: 104px;
    padding-bottom: 34px;
  }
  .product-film-hero__video {
    object-position: 58% 50%;
  }
  .product-film-hero__shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.18) 34%, rgba(0,0,0,.84) 100%),
      linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.18));
  }
  .product-film-hero .display {
    font-size: clamp(2.75rem, 11vw, 4.75rem);
  }
  .product-showreel__caption { display: block; }
  .product-showreel__caption span { display: block; margin-top: 8px; text-align: left; }
  .product-video-grid { grid-template-columns: 1fr; }
  .product-value__grid {
    grid-template-columns: 1fr;
  }
  .product-value__item {
    padding: 34px 0;
  }
  .product-value__item + .product-value__item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .product-tabs__frame {
    height: clamp(320px, 62vh, 520px);
  }
  .product-tabs__frame.is-portrait {
    height: clamp(420px, 80vh, 640px);
  }
  .product-tabs__btn {
    padding: 8px 16px;
    font-size: .82rem;
  }
  .product-process__list {
    grid-template-columns: 1fr 1fr;
  }
  .product-process__list li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .product-process__list li:nth-child(n+3) {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 560px) {
  .product-film-hero__copy {
    margin-left: 0;
  }
  .product-film-hero .display {
    font-size: clamp(2.22rem, 11vw, 3.2rem);
    line-height: 1.16;
  }
  .product-film-hero__meta {
    gap: 14px;
  }
  .product-film-hero__meta span {
    min-height: 24px;
    padding: 0;
    font-size: .58rem;
  }
  .product-statement__copy br {
    display: none;
  }
  .product-value__title,
  .product-process__title {
    font-size: clamp(2.25rem, 10.5vw, 3.5rem);
  }
  .product-process__formats {
    flex-direction: column;
    align-items: center;
  }
  .product-process__format--portrait {
    max-width: 220px;
    width: 100%;
  }
  .product-process__format--wide {
    width: 100%;
  }
  .product-process__list {
    grid-template-columns: 1fr;
  }
  .product-process__list li,
  .product-process__list li + li,
  .product-process__list li:nth-child(3) {
    padding: 28px 0;
    margin-top: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .product-process__list li:first-child {
    border-top: 0;
  }
}

/* page header (interior pages) */
.pagehead { text-align: center; padding-block: clamp(64px, 9vw, 110px) clamp(24px, 4vw, 48px); }
.pagehead .eyebrow { display: block; margin-bottom: 18px; }
.pagehead + .section--tight { padding-top: clamp(28px, 4vw, 52px); }
/* larger, more impactful page header variant */
.pagehead--impact { padding-block: clamp(70px, 9vw, 108px) clamp(34px, 5vw, 60px); background: var(--gray); }
.pagehead--impact .display { font-size: clamp(2.05rem, 3.8vw, 3.35rem); line-height: 1.16; }
.pagehead--impact + .section--tight { padding-top: clamp(36px, 5vw, 60px); }
.services-hero {
  position: relative;
  overflow: hidden;
  min-height: min(720px, 78svh);
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,9,13,.92), rgba(8,9,13,.72) 48%, rgba(8,9,13,.38)),
    url("img/brandify-hero-editing-2200.png") center / cover no-repeat,
    var(--ink);
  text-align: left;
}
.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 82%);
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  pointer-events: none;
}
.services-hero > .wrap {
  position: relative;
  z-index: 1;
}
.services-hero .display {
  max-width: 860px;
  color: #fff;
  text-shadow: 0 18px 54px rgba(0,0,0,.46);
}
.services-hero .lead {
  margin-left: 0;
  margin-right: 0;
  color: rgba(255,255,255,.76);
  text-shadow: 0 10px 34px rgba(0,0,0,.38);
}
.services-hero .mark {
  color: #fff;
}
.services-hero .mark::after {
  background: var(--blue);
  opacity: .55;
}
.services-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(30px, 4vw, 44px);
}
.services-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-family: var(--font-kr);
  font-size: .88rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.services-hero + .section--tight {
  padding-top: clamp(44px, 6vw, 72px);
}

/* ---- Stats band ----------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: 0;
  line-height: 1;
}
.stat__num.is-blue { color: var(--blue); }
.stat__label {
  margin-top: 12px;
  font-family: var(--font-kr);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-40);
}
.proof-strip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: transparent;
  padding-block: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
  z-index: 2;
}
.proof-strip .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  text-align: center;
}
.proof-strip .stat__num {
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.1rem, 3.5vw, 3.00rem);
}
.proof-strip .stat__num .num {
  font-weight: 700;
}
.proof-strip .stat__num.is-blue {
  color: var(--blue);
}
.proof-strip .stat__label {
  margin-top: 12px;
  font-family: var(--font-kr);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.6);
}

/* ---- Argument block ------------------------------------------------------- */
.argument {
  position: relative;
  padding-top: clamp(20px, 2.5vw, 32px);
}
.argument::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(96,32,255,.45) 50%, transparent 100%);
}
.argument__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}
.argument__lead .eyebrow { display: block; margin-bottom: 18px; }
.argument__lead .h1 { line-height: 1.22; }
.argument__copy {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 34px);
}
.argument__copy-line {
  flex-shrink: 0;
  align-self: center;
  width: 3px;
  height: 80px;
  background: var(--blue);
}
.argument__copy-text {
  display: grid;
  gap: 18px;
  text-align: left;
}
.argument__copy .body {
  font-size: clamp(1.03rem, 1.25vw, 1.16rem);
  color: var(--ink-80);
}
body.home .argument__grid {
  grid-template-columns: minmax(0, 1fr) 3px minmax(0, 1fr);
  column-gap: clamp(34px, 4.4vw, 58px);
  row-gap: 0;
}
body.home .argument__lead {
  grid-column: 1;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}
body.home .argument__copy-line {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  width: 3px;
  height: clamp(160px, 18vw, 240px);
}
body.home .argument__copy {
  grid-column: 3;
  display: block;
  width: 100%;
  max-width: 520px;
  justify-self: start;
}
body.home .argument__copy-text {
  width: 100%;
}

/* ---- Section heading block ------------------------------------------------ */
.shead { max-width: 720px; }
.shead--center { margin-inline: auto; text-align: center; }
.shead .eyebrow { display: block; margin-bottom: 16px; }
.shead .h2 { margin-bottom: 18px; }

/* ---- Home execution pipeline --------------------------------------------- */
.capabilities-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8f8fb 100%);
}
.pipeline {
  position: relative;
}
/* pipeline 중앙선 제거됨 */
.pipeline::before {
  content: none;
}
.pipeline__grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.pipeline__item {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(260px, 22vw, 310px);
  padding-top: clamp(28px, 3vw, 40px);
  padding-bottom: clamp(28px, 3vw, 40px);
}
.pipeline__item::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-en);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(140,82,255,.12);
  z-index: -1;
}
.pipeline__item .card__ico {
  box-shadow: 0 14px 34px -24px rgba(140,82,255,.85);
}

/* ---- Cards ---------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(26px, 3.4vw, 40px);
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { border-color: rgba(65,0,248,0.45); transform: translateY(-2px); box-shadow: 0 12px 32px -18px rgba(65,0,248,0.22); }
.card__ico {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: 22px;
}
.card__ico svg { width: 26px; height: 26px; }
.card .h3 { margin-bottom: 12px; }

/* link card (service summary) */
.lcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lcard:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 16px 36px -20px rgba(140,82,255,0.28); }
.lcard__media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, var(--gray) 0%, var(--gray-2) 100%);
  position: relative;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-25);
}
.lcard__media svg { width: 46px; height: 46px; }
.lcard__media img,
.frow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lcard__media img {
  position: absolute;
  inset: 0;
}
.lcard__media.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,20,23,.08), rgba(18,20,23,.22));
  pointer-events: none;
}
.lcard__tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: #fff;
  padding: 6px 11px; border-radius: var(--r-pill);
  z-index: 1;
}
.lcard__body { padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; flex: 1; }
.lcard__body .h3 { margin-bottom: 10px; }
.lcard__link {
  margin-top: auto; padding-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-kr); font-weight: 700; font-size: 0.92rem; color: var(--blue);
}
.lcard:hover .lcard__link .arrow { transform: translateX(4px); }
.lcard__link .arrow { transition: transform .25s var(--ease); }
.lcard--large .lcard__media { aspect-ratio: 4 / 3; }
.lcard--large .lcard__body { min-height: 270px; }
.lcard--compact .lcard__body { min-height: 280px; }
.lcard__bullets {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-kr);
  color: var(--ink-80);
  font-size: .94rem;
  line-height: 1.45;
}
.lcard__bullets span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--blue);
  vertical-align: middle;
}

/* ---- Grids ---------------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento .card { display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px; position: relative; overflow: hidden; }
.bento .span-2 { grid-column: span 2; }
.bento .card__top { margin-top: auto; }
.ghost-ico {
  position: absolute; right: -6%; bottom: -14%;
  color: var(--ink); opacity: 0.04; pointer-events: none;
}
.ghost-ico svg { width: 220px; height: 220px; }

/* ---- Numbered list (curriculum / process) -------------------------------- */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 36px);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.step:hover { border-color: var(--blue); transform: translateY(-2px); }
.step__num {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--ink-25);
  flex-shrink: 0;
  transition: color .3s var(--ease);
}
.step:hover .step__num { color: var(--blue); }
.step__body { padding-top: 4px; }
.step__body .h3 { margin-bottom: 8px; }
.step__tag {
  display: inline-block;
  font-family: var(--font-kr); font-weight: 600; font-size: 0.78rem;
  color: var(--blue); background: var(--blue-tint);
  padding: 4px 10px; border-radius: var(--r-pill); margin-bottom: 12px;
}

/* ---- Feature row (image + text) ------------------------------------------ */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.frow--rev .frow__media { order: 2; }
.frow__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--gray) 0%, var(--gray-2) 100%);
  display: grid; place-items: center;
  color: var(--ink-25);
  position: relative;
  overflow: hidden;
}
.frow__media svg { width: 56px; height: 56px; }
.frow__media .ph-label {
  position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
  font-family: var(--font-kr); font-size: 0.8rem; color: var(--ink-40); font-weight: 600;
}
.frow__media.has-image {
  display: block;
  background: var(--gray);
}
.frow__media--banner {
  aspect-ratio: 16 / 9;
  max-width: 100%;
}
.frow__media--banner img {
  object-position: 50% 45%;
}
.frow__media.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}
.frow__media.has-image .ph-label {
  left: 16px;
  right: auto;
  bottom: 16px;
  color: #fff;
  background: rgba(18,20,23,.72);
  padding: 7px 11px;
  border-radius: var(--r-sm);
}
.frow__body .eyebrow { display: block; margin-bottom: 16px; }
.frow__body .h2 { margin-bottom: 18px; }

/* checklist */
.checks { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-family: var(--font-kr); }
.check__ico {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: var(--r-sm);
  background: var(--blue); color: #fff; display: grid; place-items: center; margin-top: 2px;
}
.check__ico svg { width: 14px; height: 14px; }
.check span { color: var(--ink-80); font-size: 1rem; line-height: 1.55; }

/* ---- CTA band ------------------------------------------------------------- */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-block: clamp(80px, 12vw, 150px);
}
.cta.bg-ink {
  background:
    radial-gradient(ellipse 52% 70% at 50% 50%, rgba(96,32,255,.24) 0%, rgba(70,18,160,.15) 36%, rgba(96,32,255,0) 70%),
    linear-gradient(180deg, #15131b 0%, #151820 100%);
}
.cta.bg-ink::before {
  opacity: .78;
}
.cta__glow {
  position: absolute; top: 50%; left: 50%;
  width: min(760px, 62vw); height: min(760px, 62vw); transform: translate(-50%,-50%);
  background:
    radial-gradient(circle, rgba(132,66,255,.20) 0%, rgba(96,32,255,.14) 38%, rgba(96,32,255,0) 68%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta .h1 { margin-bottom: 20px; }
.cta__note { margin-top: 18px; font-family: var(--font-kr); font-size: 0.85rem; color: var(--ink-40); }

/* cta on dark */
.bg-ink .lead, .bg-ink .body { color: rgba(255,255,255,0.65); }
.bg-ink .cta__note { color: rgba(255,255,255,0.4); }

/* ---- Shared emphasis block ----------------------------------------------- */
.emphasis-block {
  text-align: center;
  padding-block: clamp(48px, 6vw, 80px);
}
.emphasis-block__title {
  font-family: var(--font-kr);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.36;
  letter-spacing: 0;
  word-break: keep-all;
}
.emphasis-block__sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.72;
  color: var(--ink-60);
  margin-top: 20px;
}
.bg-ink .emphasis-block__sub {
  color: rgba(255,255,255,.64);
}

/* ---- Forms ---------------------------------------------------------------- */
.form { display: grid; gap: 26px; }
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(26px, 4vw, 42px);
}
.form__hint {
  font-family: var(--font-kr);
  font-size: .88rem;
  color: var(--ink-40);
  line-height: 1.55;
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  font-family: var(--font-kr); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.02em; color: var(--ink-80);
}
.field label .req { color: var(--blue); margin-left: 3px; }
.input, .textarea, .select {
  font-family: var(--font-kr);
  background: #fff;
  border: 1px solid var(--line-strong);
  padding: 13px 14px;
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-40); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a0a0b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.consent { display: flex; gap: 11px; align-items: flex-start; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--blue); flex-shrink: 0; }
.consent label { font-family: var(--font-kr); font-size: 0.88rem; color: var(--ink-60); line-height: 1.5; font-weight: 500; }
.consent a { color: var(--blue); text-decoration: underline; }
.form__ok {
  display: none; align-items: center; gap: 10px;
  font-family: var(--font-kr); font-weight: 600; color: var(--blue);
  background: var(--blue-tint); padding: 14px 18px; border-radius: var(--r-md);
}
.form__ok.show { display: flex; }

.contact-wrap {
  max-width: 660px;
  margin-inline: auto;
}
.contact-free-card {
  margin-bottom: 32px;
  text-align: center;
  background: var(--blue-tint);
  border-color: transparent;
}
.contact-free-card .h3 {
  margin-bottom: 8px;
}

/* contact trust strip */
.contact-trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
}
.contact-trust-row {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-kr);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-80);
}
.contact-trust-item svg { color: var(--blue); flex-shrink: 0; }

/* contact aside info */
.cinfo { display: flex; flex-direction: column; gap: 28px; }
.cinfo__item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo__ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: var(--r-sm);
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.cinfo__ico svg { width: 22px; height: 22px; }
.cinfo__item .lab { font-family: var(--font-kr); font-size: 0.8rem; color: var(--ink-40); font-weight: 600; margin-bottom: 3px; }
.cinfo__item .val { font-family: var(--font-kr); font-size: 1.05rem; color: var(--ink); font-weight: 600; }

/* ---- Pill row ------------------------------------------------------------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-family: var(--font-kr); font-weight: 600; font-size: 0.88rem;
  padding: 8px 16px; border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  color: var(--ink-80); background: #fff; white-space: nowrap;
}
.pill--blue { background: var(--blue-tint); border-color: transparent; color: var(--blue); }

/* ---- Proof / real captures ------------------------------------------------ */
.proof {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.proof:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 18px 44px -26px rgba(65,0,248,.4); }
.proof > img { width: 100%; height: auto; display: block; }
.proof__cap {
  margin-top: auto;
  padding: 14px 18px;
  font-family: var(--font-kr); font-size: 0.9rem; line-height: 1.5; color: var(--ink-60);
  border-top: 1px solid var(--line);
  display: flex; gap: 8px; align-items: flex-start;
  word-break: keep-all;
}
.proof__cap b { color: var(--ink); font-weight: 700; }
.proof__cap .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--blue); flex-shrink: 0; margin-top: 6px; }
.proof__cap span:not(.dot) { min-width: 0; }
.proof-note { font-family: var(--font-kr); font-size: 0.82rem; color: var(--ink-40); text-align: center; }
.course-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.course-proof-grid .proof:nth-child(-n+2) {
  justify-content: center;
}
.course-proof-grid .proof:nth-child(-n+2) .proof__cap {
  margin-top: 14px;
}
.course-proof-grid .proof:nth-child(n+3) {
  grid-column: 1 / -1;
}
.course-proof-grid .proof:nth-child(n+3) > img {
  width: 100%;
  height: auto;
}
.eyebrow--youtube { color: var(--blue); }
.course-intro-image-section { padding-block: clamp(0px, 0vw, 0px) clamp(56px, 6vw, 88px); }
.course-intro-image {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.course-intro-image img { width: 100%; height: auto; display: block; }
.course-timeline { display: flex; flex-direction: column; gap: 16px; }
.course-module {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 32px);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.course-module:hover {
  transform: translateY(-2px);
  border-color: rgba(96,32,255,.26);
  box-shadow: 0 20px 52px -34px rgba(96,32,255,.32);
}
.course-module__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink-25);
  flex-shrink: 0;
}
.course-module__body { flex: 1; min-width: 0; }
.course-module__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .78rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.course-module__body .h3 { margin-bottom: 8px; }
.course-module__proof {
  flex-shrink: 0;
  font-family: var(--font-kr);
  font-weight: 700;
  font-size: .86rem;
  color: #fff;
  background: var(--blue);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.section--aftercare { background: var(--gray); }
.aftercare-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px);
}
.aftercare-panel__head { max-width: 680px; margin-inline: auto; text-align: center; }
.aftercare-panel__head .h2 { margin-top: 18px; }
.aftercare-panel__head .body { margin-top: 14px; color: var(--ink-60); }
.aftercare-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--line);
}
.aftercare-list span {
  display: block;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink-25);
  margin-bottom: 12px;
}
.aftercare-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.aftercare-list p { color: var(--ink-60); font-size: .95rem; line-height: 1.65; word-break: keep-all; }
@media (max-width: 760px) {
  .course-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .course-module { flex-direction: column; align-items: flex-start; gap: 14px; }
  .course-module__proof { align-self: flex-start; }
  .aftercare-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .course-proof-grid { grid-template-columns: 1fr; }
}

/* ---- Founder / 대표 소개 --------------------------------------------------- */
.founder { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(34px, 5vw, 64px); align-items: center; }
.founder__img {
  position: relative;
  border: 1px solid rgba(140,82,255,.24);
  border-radius: var(--r-lg);
  background: var(--gray);
  box-shadow: 0 24px 58px -32px rgba(140,82,255,.45);
  isolation: isolate;
}
.founder__img::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -34px;
  right: -34px;
  background: radial-gradient(circle, rgba(140,82,255,.24), rgba(140,82,255,0) 70%);
  z-index: -1;
  pointer-events: none;
}
.founder__img img { width: 100%; height: auto; display: block; border-radius: inherit; }
.founder__body .eyebrow { display: block; margin-bottom: 16px; }
.founder__body .h2 { margin-bottom: 18px; }
.founder__facts { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.founder__fact { display: flex; gap: 14px; align-items: baseline; font-family: var(--font-kr); }
.founder__fact .k { flex-shrink: 0; width: 96px; font-size: 0.82rem; color: var(--blue); font-weight: 800; }
.founder__fact .v { color: var(--ink); font-weight: 700; }
@media (max-width: 820px) { .founder { grid-template-columns: 1fr; } }

@media (max-width: 600px) {
  .hero__bg img { object-position: 72% 50%; }
  .frow__media--banner { aspect-ratio: 4 / 3; }
}

/* ---- Footer --------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 72px) 36px;
  background: #fff;
  color: var(--ink);
}
.footer > .wrap {
  max-width: var(--container);
  padding-inline: var(--gutter);
}
.footer__top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer__brand { max-width: 360px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { font-family: var(--font-kr); font-size: 0.88rem; color: var(--ink-60); line-height: 1.7; }
.footer__cols { display: flex; gap: clamp(36px, 6vw, 80px); flex-wrap: wrap; }
.footer__col h4 {
  font-family: var(--font-kr); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em;
  color: var(--ink-40); text-transform: uppercase; margin-bottom: 16px;
}
.footer__col a {
  display: block; font-family: var(--font-kr); font-size: 0.95rem; color: var(--ink-80);
  padding: 6px 0; transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--blue); }
.footer__bottom {
  margin-top: clamp(40px, 6vw, 64px); padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-family: var(--font-body); font-size: 0.82rem; color: var(--ink-40); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a { font-family: var(--font-kr); font-size: 0.82rem; color: var(--ink-40); }
.footer__legal a:hover { color: var(--ink); }

/* ---- Brand Korean label ---------------------------------------------------- */
.brand__kr {
  font-family: var(--font-kr);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--ink-40);
  letter-spacing: 0.01em;
}
body.home .nav .brand__kr { color: rgba(255,255,255,.5); }
body.home.menu-open .nav .brand__kr { color: var(--ink-40); }

/* ---- KakaoTalk CTA button -------------------------------------------------- */
.btn--kakao {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 700;
}
.btn--kakao:hover { background: #FEE500; border-color: #FEE500; color: #191919; }
.hero--photo .btn--kakao {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 48px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero--photo .btn--primary {
  box-shadow: 0 24px 70px -24px rgba(140,82,255,1);
}
.hero--photo .btn--kakao:hover {
  background: #FEE500;
  border-color: #FEE500;
  color: #191919;
}

.secondary-track {
  position: relative;
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(140,82,255,.14);
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(140,82,255,.08), rgba(255,255,255,.92) 44%, rgba(18,20,23,.04));
}
.secondary-track::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: inherit;
  pointer-events: none;
}
.service-secondary-grid {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
}
.service-mini-card {
  text-decoration: none;
  min-height: 100%;
}
.service-mini-card__tag {
  display: inline-flex;
  width: max-content;
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: var(--r-pill);
  padding: 5px 11px;
  margin-bottom: 16px;
}
.service-mini-card .lcard__bullets {
  margin-top: 18px;
}
.service-mini-card .lcard__link {
  margin-top: 22px;
}

.service-rail {
  position: relative;
  --rail-visible-width: min(calc(100vw - 96px), 1320px);
  width: var(--rail-visible-width);
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.service-rail::before,
.service-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(86px, 8vw, 148px);
  pointer-events: none;
  display: block;
}
.service-rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 8px, rgba(255,255,255,.92) 28%, rgba(255,255,255,0) 100%);
}
.service-rail::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, var(--white) 8px, rgba(255,255,255,.92) 28%, rgba(255,255,255,0) 100%);
}
.service-rail__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 22px;
  cursor: grab;
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.service-rail__viewport::-webkit-scrollbar {
  display: none;
}
.service-rail__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.service-rail__viewport.is-dragging a {
  pointer-events: none !important;
}
.service-rail__track {
  display: flex;
  width: max-content;
  gap: 22px;
  will-change: scroll-position;
}
.service-rail__set {
  display: flex;
  align-items: stretch;
  gap: 22px;
}
.service-rail__card {
  flex: 0 0 clamp(280px, 18vw, 318px);
  width: clamp(280px, 18vw, 318px);
  min-height: 510px;
  text-decoration: none;
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-select: none;
}
.service-rail__card img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}
.service-rail__card .lcard__media,
.service-rail__card--text::before {
  aspect-ratio: 4 / 3;
}
.service-rail__card .lcard__tag,
.service-rail__card .service-mini-card__tag {
  display: none;
}
.service-rail__card .lcard__body {
  min-height: auto;
  padding: clamp(24px, 2.4vw, 30px);
}
.service-rail__card .h3 {
  font-size: clamp(1.36rem, 1.45vw, 1.72rem);
  line-height: 1.25;
}
.service-rail__card .body {
  font-size: .98rem;
  line-height: 1.7;
}
.service-rail__card .lcard__bullets {
  font-size: .9rem;
  line-height: 1.55;
}
.service-rail__card--text::before {
  content: none;
}
/* ---- Performance metrics section (dark) ------------------------------------ */
.perf-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 64px);
}
.perf-metric {
  background: rgba(255,255,255,.04);
  padding: clamp(24px, 3.5vw, 44px) clamp(18px, 2.8vw, 36px);
}
.perf-metric__label {
  font-family: var(--font-kr); font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,.4); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.perf-metric__num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.perf-metric__num .blue { color: var(--blue); }
.perf-metric__sub {
  font-family: var(--font-kr); font-size: 0.88rem;
  color: rgba(255,255,255,.4); margin-top: 10px; line-height: 1.55;
}
@media (max-width: 700px) { .perf-metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .perf-metrics { grid-template-columns: 1fr; } }

/* ---- Client result cards --------------------------------------------------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(36px, 5vw, 56px);
}
.result-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: clamp(22px, 3vw, 36px);
  position: relative; overflow: hidden;
}
.result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
.result-card__tag {
  display: inline-block; font-family: var(--font-kr); font-size: 0.75rem;
  font-weight: 700; color: var(--blue); background: var(--blue-tint);
  padding: 4px 10px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.result-card__num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1;
}
.result-card__num .blue { color: var(--blue); }
.result-card__desc {
  font-family: var(--font-kr); font-size: 0.9rem;
  color: var(--ink-60); margin-top: 10px; line-height: 1.6;
}
.result-card--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.result-card--dark .result-card__num { color: #fff; }
.result-card--dark .result-card__desc { color: rgba(255,255,255,.62); }
@media (max-width: 600px) { .results-grid { grid-template-columns: 1fr; } }

/* ---- Course minimalist signup inputs --------------------------------------- */
.course-inputs {
  max-width: 560px; margin-inline: auto; margin-top: 52px;
}
.course-inputs__field {
  border-bottom: 1px solid var(--line-strong); padding-block: 24px 22px;
}
.course-inputs__field:first-child { border-top: 1px solid var(--line-strong); }
.course-inputs__label {
  display: block; font-family: var(--font-kr); font-size: 0.72rem;
  font-weight: 700; color: var(--ink-40); letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 8px;
}
.course-inputs__input {
  width: 100%; font-family: var(--font-kr); font-size: 1.15rem;
  color: var(--ink); background: transparent; border: none; padding: 0;
}
.course-inputs__input::placeholder { color: var(--ink-25); }
.course-inputs__input:focus { outline: none; }
.course-inputs__cta { margin-top: 36px; }

/* ---- Scroll reveal -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .service-rail__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Utilities ------------------------------------------------------------ */
.center { text-align: center; }
.mt-s { margin-top: 18px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 48px; }
.maxw-720 { max-width: 720px; }
.maxw-640 { max-width: 640px; }
.mx-auto { margin-inline: auto; }

/* ---- Responsive ----------------------------------------------------------- */
@media (min-width: 1121px) {
  .nav__cta-btn { display: inline-flex; }
}
@media (max-width: 1120px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  body.home .nav { position: fixed; }
  .services-hero {
    min-height: auto;
    padding-block: clamp(122px, 18vw, 156px) clamp(70px, 10vw, 96px);
    background:
      linear-gradient(90deg, rgba(8,9,13,.94), rgba(8,9,13,.76)),
      url("img/brandify-hero-editing-2200.png") 58% center / cover no-repeat,
      var(--ink);
  }
  .hero--photo {
    min-height: auto;
    text-align: left;
    padding-block: clamp(116px, 22vw, 150px) clamp(72px, 14vw, 100px);
  }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5,7,10,.82), rgba(5,7,10,.46)),
      linear-gradient(180deg, rgba(5,7,10,.22), rgba(5,7,10,.68));
  }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pipeline::before { display: none; }
  .pipeline__grid { grid-auto-rows: auto; }
  .pipeline__item { min-height: 260px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento .span-2 { grid-column: span 2; }
  .frow { grid-template-columns: 1fr; gap: 32px; }
  .frow--rev .frow__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .argument__grid { grid-template-columns: 1fr; }
  .argument__copy-line { width: 2px; }
  body.home .argument__grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  body.home .argument__lead,
  body.home .argument__copy {
    grid-column: 1;
    justify-self: stretch;
    max-width: none;
  }
  body.home .argument__copy-line {
    grid-column: 1;
    justify-self: start;
    width: 84px;
    height: 3px;
  }
}
@media (max-width: 760px) {
  .service-rail::before,
  .service-rail::after {
    display: none;
  }
  .service-rail__viewport {
    overflow-x: auto;
    padding-inline: 20px;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    clip-path: none;
  }
  .service-rail__viewport::-webkit-scrollbar {
    display: none;
  }
  .service-rail__track {
    animation: none;
  }
  .service-rail__set--clone {
    display: none;
  }
  .service-rail__card {
    flex-basis: min(82vw, 330px);
    width: min(82vw, 330px);
    min-height: 520px;
    scroll-snap-align: center;
  }
  .service-rail__card .lcard__body {
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pipeline__item { min-height: auto; }
  .bento { grid-template-columns: 1fr; }
  .bento .span-2 { grid-column: span 1; }
  .field__row { grid-template-columns: 1fr; }
  .services-hero .display { font-size: clamp(2.35rem, 11vw, 3.35rem); }
  .services-hero__proof { display: grid; }
  .services-hero__proof span { width: max-content; max-width: 100%; }
  .step { gap: 16px; }
  .footer__top { flex-direction: column; gap: 32px; }
  .hero--photo .display { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .hero--photo.hero--reference .display { font-size: clamp(2.22rem, 11vw, 2.9rem); line-height: 1.08; }
  .hero--photo { padding-block: 96px 220px; }
  .hero--reference .hero__inner { display: flex; flex-direction: column; align-items: flex-start; }
  .hero--photo .lead { font-size: 0.96rem; line-height: 1.54; }
  .hero--photo.hero--reference .lead { margin-top: 22px; line-height: 1.56; }
  .hero__meta { display: grid; }
  .hero--reference .hero__meta { order: 5; margin-top: 22px; }
  .hero--reference .hero__cta { order: 4; margin-top: 24px; }
  .hero__meta span { width: max-content; max-width: 100%; }
  .hero--photo .hero__cta { flex-wrap: wrap; gap: 10px; margin-top: 28px; }
  .hero--photo .btn--lg { padding: 0.95em 1.05em; font-size: 0.92rem; min-width: 0; }
  .secondary-track { padding: 18px; }
  .service-secondary-grid { max-width: none; }
}

/* ---- Page Transition ------------------------------------------------------ */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  background: rgba(18,20,23,.44);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity .28s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity;
}
body.page-entering .page-transition-overlay,
body.page-leaving .page-transition-overlay {
  opacity: 1;
}
body.page-leaving .page-transition-overlay {
  pointer-events: auto;
}

/* ---- Navigation Dropdown Over Dark Sections ----------------------- */
.nav.is-over-dark .nav__dropdown {
  background: rgba(18, 20, 23, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 56px rgba(18,20,23,.42), 0 4px 12px rgba(18,20,23,.24);
}
.nav.is-over-dark .nav__drop-item {
  color: rgba(255, 255, 255, 0.86);
}
.nav.is-over-dark .nav__drop-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--blue);
}
.nav.is-over-dark .nav__drop-item--head {
  color: rgba(255, 255, 255, 0.48);
}
.nav.is-over-dark .nav__drop-item--head:hover {
  background: transparent;
  color: var(--blue);
}
.nav.is-over-dark .nav__drop-divider {
  background: rgba(255, 255, 255, 0.12);
}

/* ---- Hero stat blocks: mobile -------------------------------------------- */
@media (max-width: 760px) {
  .hero__meta--stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: none;
    padding-top: 0;
    flex-wrap: nowrap;
  }
  .hero__meta--stats .hero__stat + .hero__stat {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.13);
  }
}

/* ---- bg-ink dark section card overrides ---- */
.bg-ink .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.bg-ink .card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px -18px rgba(var(--brand-rgb), 0.4);
}
.bg-ink .card .card__ico {
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--blue);
}
.bg-ink .card .h3 {
  color: #fff;
}
.bg-ink .card .body {
  color: rgba(255, 255, 255, 0.65);
}

/* ---- Fix for reveal class overwriting hover transitions ---- */
.card.reveal.in { transition: opacity .7s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease); }
.card.reveal.in:hover { transform: translateY(-2px); transition-delay: 0s; }

.lcard.reveal.in { transition: opacity .7s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.lcard.reveal.in:hover { transform: translateY(-3px); transition-delay: 0s; }

.proof.reveal.in { transition: opacity .7s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.proof.reveal.in:hover { transform: translateY(-3px); transition-delay: 0s; }
