:root {
  --color-primary: #ff0000;
  --color-primary-dark: #cc0000;
  --color-gradient-end: #f77737;
  --gradient: linear-gradient(135deg, var(--color-primary), var(--color-gradient-end));
  --color-text: #1a1a1a;
  --color-sub: #6b6b6b;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f7f8;
  --color-border: #ececec;
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1160px;
  --header-h: 10rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  display: block;
}

._block {
  display: block !important;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-line {
  display: inline-flex;  
  align-items: center;
  justify-content: center;
  padding: 12px 48px;
  background: transparent;
  color: #ffffff;
  border: #ffffff 1.5px solid;
  border-radius: 999px;
  font-weight: 700;
  font-size: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 0, 0, 0.32);
}

/* ---------- header (원본 header/header article 그대로) ---------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 10rem;
  backdrop-filter: blur(2rem);
  background-color: rgba(255, 255, 255, 0.55);
  z-index: 200;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.header article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  margin: 0 auto;
  padding: 0 2rem 0 3rem;
  width: 100%;
  max-width: 144rem;
  height: 100%;
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.logo span {
  color: var(--color-text);
}

.header article a:not(.logo) {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header article a:not(.logo):hover {
  color: var(--color-primary);
}

.header article a.active {
  color: var(--color-primary);
  font-weight: 700;
}

.header article button.tour {
  width: 12.8rem;
  height: 3.2rem;
  background: var(--gradient);
  border-radius: 1.6rem;
  overflow: hidden;
}

.header article button.tour div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.2rem;
}

.header article button.tour div span {
  display: inline-block;
  width: 100%;
  height: 3.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 3.2rem;
  text-align: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 2.8rem;
}

.menu-toggle span {
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

/* ---------- mobile nav ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: #fff;
  z-index: 260;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 90px 28px 28px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.show {
  transform: translateX(0);
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav .btn-consult {
  margin-top: 20px;
  text-align: center;
  border-bottom: none;
}

.mobile-nav button.tour {
  margin-top: 20px;
  width: 100%;
  height: 4.6rem;
  background: var(--gradient);
  border-radius: 2.3rem;
  overflow: hidden;
}

.mobile-nav button.tour div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.6rem;
}

.mobile-nav button.tour div span {
  display: inline-block;
  width: 100%;
  height: 4.6rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 4.6rem;
  text-align: center;
}

/* ---------- hero (원본 article.top: PC 고정 85.6rem, 모바일 100vh - 16rem) ---------- */
.hero {
  position: relative;
  min-height: 85.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #fff5f2;
  will-change: transform;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-bg-1 {
  background: no-repeat 50% 50% / cover url('../img/sec01-hero-bg-1.jpg');
  animation: hero-bg-fade 8s ease infinite;
}

.hero-bg-2 {
  background: no-repeat 50% 50% / cover url('../img/sec01-hero-bg-2.jpg');
  animation: hero-bg-fade 8s ease infinite;
  animation-delay: 4s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.45) 100%);
}

@keyframes hero-bg-fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  50% { opacity: 1; }
  60% { opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- hero stage (원본 article.top div.title: 144rem 폭, 좌측 텍스트 + 우측 큰 일러스트) ---------- */
.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 4rem 0 8.4rem;
}

/* ---------- hero illustration (원본 article.top div.title section.title-1/2, home_top_1/2.png) ---------- */
.hero-illust {
  position: absolute;
  left: 74rem;
  top: 50%;
  transform: translateY(-50%);
  width: 56rem;
  height: 56rem;
  z-index: 2;
  pointer-events: none;
}

.hero-illust-slide {
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50% / contain;
  opacity: 0;
}

.hero-illust-1 {
  background-image: url('../img/sec01-hero-illust-1.png');
  animation: hero-illust-fall 8s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite;
}

.hero-illust-2 {
  background-image: url('../img/sec01-hero-illust-2.png');
  animation: hero-illust-fall 8s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite;
  animation-delay: 4s;
}

@keyframes hero-illust-fall {
  0% { opacity: 0; transform: translateY(0); }
  10% { opacity: 1; transform: translateY(100%); }
  50% { opacity: 1; transform: translateY(100%); }
  60% { opacity: 0; transform: translateY(200%); }
  100% { opacity: 0; transform: translateY(200%); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 60rem;
  margin: 0;
  text-align: left;
  padding: 0;
}

.hero-slides {
  position: relative;
  height: 300px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-text-fall 8s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite;
}

.hero-slide-1 {
  animation-delay: 0s;
}

.hero-slide-2 {
  animation-delay: 4s;
}

@keyframes hero-text-fall {
  0% { opacity: 0; transform: translateY(-70%); }
  10% { opacity: 1; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0; transform: translateY(70%); }
  100% { opacity: 0; transform: translateY(70%); }
}

.hero-eyebrow {
  font-size: clamp(12px, 3.6vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(21px, 6vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}

.hero-title strong {
  color: #fff;
  font-size: clamp(29px, 8.3vw, 52px);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
}

.hero-slide .btn-line {
  margin-top: 1.8rem;
}

/* ---------- news (article.news section 원본 벤치마킹) ---------- */
article.news {
  position: relative;
  z-index: 1;
  background-color: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(10px);
}

article.news section {
  position: relative;
  margin: 0 auto;
  padding: 0 0 0 10.8rem;
  width: 127.2rem;
  height: 11rem;
}

article.news section::before {
  content: attr(data-title);
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
  width: 10rem;
  height: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #ff5316;
}

article.news section:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(224, 224, 224, 1);
}

article.news section a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

article.news section a::before {
  content: "자세히 보기";
  position: absolute;
  left: 100rem;
  font-weight: 600;
  color: rgba(58, 207, 216, 1);
  white-space: nowrap;
}

article.news section a::after {
  content: "\2192";
  position: absolute;
  right: 0;
  width: 5.2rem;
  height: 2.2rem;
  font-size: 2.2rem;
  line-height: 2.2rem;
  color: rgba(58, 207, 216, 1);
}

@media (max-width: 1320px) {
  article.news section {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: 0 1.5rem;
    width: 100%;
    height: 8rem;
  }

  article.news section::before {
    position: relative;
    left: unset;
    top: unset;
    width: max-content;
    height: 2rem;
    font-size: 1.4rem;
  }

  article.news section a {
    display: block;
    padding: 0 4rem 0 0;
    width: 100%;
    height: 2rem;
    font-size: 1.4rem;
    line-height: 2rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  article.news section a::before {
    display: none;
  }

  article.news section a::after {
    width: 3rem;
    height: 2rem;
    font-size: 1.8rem;
    line-height: 2rem;
  }
}

/* ---------- scroll reveal (원본 fx: 숨김 상태를 정의하고 JS가 fx 클래스를 제거해 노출) ---------- */
.fx {
  opacity: 0;
  transform: translateY(10rem);
  transition: opacity 1s ease, transform 1s ease;
}

.ombre {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* .title h1 { color: ... } 보다 이 규칙의 우선순위가 높아야 그라데이션이 실제로 보인다 */
.title h1.ombre,
.title h1 .ombre {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---------- common title (article.title) ---------- */

.exp-title {
  background-color: rgba(255, 250, 245, 1);
}

.title {
  position: relative;
  z-index: 1;
  transition: opacity 1s ease, transform 1s ease;
  text-align: center;
  padding: 16rem calc((100% - 127.2rem) / 2) 1rem;
}

.title h1 {
  width: 100%;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 5.4rem;
}

.title h1 strong {
  /* display: block; */
  margin-top: 1.5rem;
  color: var(--color-primary);
}

.title h2 {
  margin: 0 0 2rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.7rem;
}

.title h3 {
  width: 100%;
  margin: 2.5rem auto 0;
  max-width: 70rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-sub);
  line-height: 2.2rem;
}

.title div.container {
  padding: 4rem 0 0;
  width: 100%;
}

.title div.container section.tab {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 4.8rem;
}

.title div.container section.tab input[type="radio"] {
  display: none;
}

.title div.container section.tab label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.2rem;
  width: 14rem;
  height: 4.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-sub);
  box-sizing: border-box;
  border: 2px solid var(--color-border);
  border-radius: 2.4rem;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.title div.container section.tab input[type="radio"]:checked + label {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
}

/* ---------- SERVICE ---------- */
article.service-title {
  background-color: #fff;
}

article.service {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

article.service div.container {
  position: relative;
  margin: 0 auto;
  width: 152rem;
  max-width: 100%;
  height: 55rem;
  overflow: hidden;
}

article.service div.container button {
  position: absolute;
  top: 0;
  width: 4rem;
  height: 100%;
  z-index: 2;
}

article.service div.container button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

article.service div.container button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #c9c9c9;
  -webkit-mask: no-repeat 50% 50% / contain;
  mask: no-repeat 50% 50% / contain;
  transition: background-color 0.5s ease;
}

article.service div.container button:hover::after {
  background-color: var(--color-text);
}

article.service div.container button.prev {
  left: 1rem;
}

article.service div.container button.next {
  right: 1.7rem;
}

article.service div.container button.prev::after {
  -webkit-mask-image: url('../img/home_service_prev.svg');
  mask-image: url('../img/home_service_prev.svg');
}

article.service div.container button.next::after {
  -webkit-mask-image: url('../img/home_service_next.svg');
  mask-image: url('../img/home_service_next.svg');
}

article.service div.container div.wrapper {
  display: flex;
  flex-flow: row nowrap;
  padding: 0 0 0 152rem;
  width: max-content;
  height: 100%;
  user-select: none;
  transition: transform 0.5s ease;
}

article.service div.wrapper section {
  display: flex;
  align-items: center;
  padding: 0 23.2rem;
  width: 152rem;
  height: 100%;
  background: no-repeat 90% 50% / auto;
}

article.service div.wrapper section.reels { background-image: url('../img/sec03-service-bg-reels.jpg'); }
article.service div.wrapper section.youtube { background-image: url('../img/sec03-service-bg-youtube.jpg'); }
article.service div.wrapper section.naver    { background-image: url('../img/sec03-service-bg-naver.jpg'); }
article.service div.wrapper section.danggeun { background-image: url('../img/sec03-service-bg-danggeun.jpg'); }
article.service div.wrapper section.creator { background-image: url('../img/sec03-service-bg-creator.jpg'); }
article.service div.wrapper section.ads     { background-image: url('../img/sec03-service-bg-ads.jpg'); }

article.service div.wrapper section div {
  display: block;
  padding: 14rem 3rem 3rem;
  width: 32.4rem;
  height: 37.6rem;
  font-size: 1.8rem;
  color: var(--color-sub);
  line-height: 2.9rem;
  background-position: 3rem 3rem;
  background-repeat: no-repeat;
  background-size: 5.4rem 5.4rem;
  background-color: #fff;
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 1.6rem;
}

article.service div.wrapper section div h1 {
  margin: 0 0 3rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-text);
}

article.service div.wrapper section div a {
  position: relative;
  display: block;
  margin: 5rem 0 0;
  padding: 0 1.5rem 0 0;
  width: max-content;
  height: 1.3rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3rem;
}

article.service div.wrapper section div a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1.3rem;
  height: 1.3rem;
  background: no-repeat 50% 50% / contain url('../img/home_service_arrow.svg');
}

article.service div.wrapper section.reels div { background-image: url('../img/sec03-service-icon-reels.svg'); }
article.service div.wrapper section.youtube div { background-image: url('../img/sec03-service-icon-youtube.svg'); }
article.service div.wrapper section.naver    div { background-image: url('../img/sec03-service-icon-naver.svg'); }
article.service div.wrapper section.danggeun div { background-image: url('../img/sec03-service-icon-danggeun.svg'); }
article.service div.wrapper section.creator div { background-image: url('../img/sec03-service-icon-creator.svg'); }
article.service div.wrapper section.ads     div { background-image: url('../img/sec03-service-icon-ads.svg'); }

/* ---------- SERVICE CATEGORY ---------- */
article.service-ctg {
  padding: 0 0 16rem;
  background-color: #fff;
}

article.service-ctg div.container {
  margin: 0 auto;
  width: 144rem;
  max-width: 100%;
  height: 12.4rem;
}

article.service-ctg div.container div.wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
}

article.service-ctg div.wrapper input[type="radio"] {
  display: none;
}

article.service-ctg div.wrapper label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 14rem;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #aaa;
  text-align: center;
  cursor: pointer;
  transition: color 0.5s ease;
}

article.service-ctg div.wrapper label::before {
  content: "";
  position: absolute;
  left: calc((100% - 7.6rem) / 2);
  top: 0;
  width: 7.6rem;
  height: 7.6rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  filter: grayscale(100%);
  transition: filter 0.5s ease, opacity 0.5s ease;
}

article.service-ctg div.wrapper label:hover::before {
  filter: grayscale(0);
}

article.service-ctg div.wrapper label.ctg-reels::before {
  background-image: url('../img/sec03-service-icon-reels.svg');
  opacity: 0.6;
}

article.service-ctg div.wrapper label.ctg-youtube::before {
  background-image: url('../img/sec03-service-icon-youtube.svg');
  opacity: 0.6;
}

article.service-ctg div.wrapper label.ctg-naver::before    { background-image: url('../img/sec03-service-icon-naver.svg');    opacity: 0.6; }
article.service-ctg div.wrapper label.ctg-danggeun::before { background-image: url('../img/sec03-service-icon-danggeun.svg'); opacity: 0.6; }
article.service-ctg div.wrapper label.ctg-creator::before  { background-image: url('../img/sec03-service-icon-creator.svg'); opacity: 0.6; }
article.service-ctg div.wrapper label.ctg-ads::before      { background-image: url('../img/sec03-service-icon-ads.svg');     opacity: 0.6; }

article.service-ctg div.wrapper input[type="radio"]:checked + label {
  color: var(--color-text);
}

article.service-ctg div.wrapper input[type="radio"]:checked + label::before {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------- EXP ---------- */
article.exp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  width: 100%;
  padding: 6rem 2rem;
  background-color: rgba(255, 250, 245, 1);
  overflow: hidden;
}

article.exp section.type {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 64.8rem;
  max-width: 100%;
}

article.exp section.type input[type="radio"] {
  display: none;
}

article.exp section.type label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 30rem;
  height: 17.5rem;
  font-size: 1.4rem;
  color: var(--color-sub);
  text-align: center;
  line-height: 2rem;
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0.5rem 0.5rem 1.6rem rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}

article.exp section.type label h1 {
  width: 100%;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-sub);
  transition: color 0.3s ease;
}

article.exp section.type input[type="radio"]:checked + label {
  color: #fff;
  background: var(--gradient);
}

article.exp section.type input[type="radio"]:checked + label h1 {
  color: #fff;
}

article.exp section.fig {
  width: 60rem;
  max-width: 100%;
  height: 40rem;
  overflow: hidden;
  border-radius: 2rem;
}

article.exp section.fig div.wrapper {
  display: flex;
  flex-flow: row nowrap;
  padding: 0 0 0 60rem;
  width: max-content;
  height: 40rem;
  transition: transform 0.5s ease;
}

article.exp section.fig div.wrapper div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60rem;
  height: 40rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  background-size: cover;
  background-position: center;
}

article.exp section.fig div.wrapper div:nth-of-type(1) { background-image: url('../img/sec05-exp-fig-1.png'); }
article.exp section.fig div.wrapper div:nth-of-type(2) { background-image: url('../img/sec05-exp-fig-2.png'); }
article.exp section.fig div.wrapper div:nth-of-type(3) { background-image: url('../img/sec05-exp-fig-3.png'); }
article.exp section.fig div.wrapper div:nth-of-type(4) { background-image: url('../img/sec05-exp-fig-4.png'); }

/* ---------- PLATFORM ---------- */
article.platform-title {
  background-color: rgba(244, 246, 249, 1);
}

article.platform {
  padding: 6rem 1rem 12rem;
  background-color: rgba(244, 246, 249, 1);
}

article.platform div.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  max-width: 127.2rem;
}

article.platform div.container.fx {
  transform: translateY(10rem);
  opacity: 0;
}

article.platform div.container section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem;
  width: 27rem;
  min-height: 15.6rem;
  height: auto;
  border-radius: 1.6rem;
  background-color: #fff;
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.06);
  transition: background-color 0.5s ease;
}

article.platform div.container section::after {
  content: attr(data-title);
  margin-top: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-sub);
  transition: color 0.5s ease;
}

article.platform div.container section h3 {
  display: flex;
  align-items: baseline;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-text);
  transition: color 0.5s ease;
}

article.platform div.container section .pf-suffix {
  font-size: 2rem;
  font-weight: 800;
  margin-left: 0.2rem;
  transition: color 0.5s ease;
}

article.platform div.container section .platform-source {
  margin: 0.6rem 0 0;
  font-size: 1.1rem;
  color: var(--color-sub);
  line-height: 1.5;
  transition: color 0.5s ease;
}

article.platform div.container section:hover {
  background: var(--gradient);
}

article.platform div.container section:hover::after,
article.platform div.container section:hover h3,
article.platform div.container section:hover .platform-source {
  color: #fff;
}

/* ---------- APP (이미지 에셋이 없어 텍스트/그라디언트 중심으로 단순화) ---------- */
article.app {
  background-color: rgba(255, 250, 246, 1);
  overflow: hidden;
}

article.app div.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin: 0 auto;
  padding: 10rem 2rem;
  max-width: 127.2rem;
}

article.app .app-copy {
  flex: 1 1 50rem;
}

article.app .app-copy p {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}

article.app .app-copy h1 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 5rem;
}

article.app .app-copy h1 strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

article.app .app-buttons {
  display: flex;
  margin: 3rem 0 0 0rem;
  gap: 1rem;
  width: calc(100% - 4rem);
}

article.app .app-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17rem;
  height: 5.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: rgba(22, 22, 22, 1);
  border-radius: 1.2rem;
}

article.app .app-visual {
  flex: 0 0 36rem;
  height: 36rem;
  max-width: 100%;
  border-radius: 3rem;
  background: var(--gradient);
}

/* ---------- EXAMPLES ---------- */
article.example {
  position: relative;
  background-color: #fff;
  padding: 6rem 2rem 14rem;
  overflow: hidden;
}

article.example .example-bg {
  position: absolute;
  left: calc(50% - 50rem);
  top: 4rem;
  width: 36rem;
  pointer-events: none;
  user-select: none;
}

article.example div.container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin: 0 auto;
  max-width: 100rem;
}

article.example div.container section {
  position: relative;
  display: flex;
  align-self: flex-end;
  gap: 2rem;
  padding: 2.8rem 4rem 2.5rem 2.8rem;
  font-size: 1.7rem;
  color: var(--color-text);
  line-height: 2.6rem;
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition: opacity 1s ease, transform 1s ease;
  /* width: fit-content; */
}

article.example div.container section.fx {
  transform: translateX(10rem);
  opacity: 0;
}

article.example div.container section:nth-of-type(2) {
  align-self: flex-end;
}

article.example div.container section::before {
  content: "";
  flex: 0 0 6.4rem;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: var(--gradient);
  align-self: center;
}

article.example div.container section:nth-of-type(1)::before { background-image: url('../img/index-example-avatar-01.jpg'); background-size: cover; }
article.example div.container section:nth-of-type(2)::before { background-image: url('../img/index-example-avatar-02.jpg'); background-size: cover; }
article.example div.container section:nth-of-type(3)::before { background-image: url('../img/index-example-avatar-03.jpg'); background-size: cover; }

article.example div.container section strong {
  color: var(--color-primary);
}

article.example div.container section h6 {
  position: absolute;
  right: 2.4rem;
  bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-sub);  
  margin: 8px 0 0 0;
}

/* ---------- CAMPAIGN ---------- */
article.campaign-title {
  background-color: rgba(244, 246, 249, 1);
}

article.campaign {
  padding: 6rem 0 15rem;
  background-color: rgba(244, 246, 249, 1);
  overflow: hidden;
}

article.campaign div.wrapper {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 0 0 calc((100% - 127.2rem) / 2);
  width: max-content;
  user-select: none;
  cursor: grab;
  transition: transform 1s ease, opacity 1s ease;
}

article.campaign div.wrapper.fx {
  transform: translateX(10rem);
  opacity: 0;
}

article.campaign div.wrapper section {
  margin: 0 1.6rem 0 0;
  width: 22.7rem;
  border-radius: 2rem;
  background-color: #fff;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

article.campaign div.wrapper section.hide {
  display: none;
}

article.campaign div.wrapper section .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1a1a1a;
}



article.campaign div.wrapper section h1 {
  margin: 1.6rem 2rem 0.6rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

article.campaign div.wrapper section h2 {
  margin: 0 2rem 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-sub);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- PS (크리에이터 콘텐츠) ---------- */
article.ps {
  padding: 6rem 0 15rem;
  background-color: #fff;
  overflow: hidden;
}

article.ps div.wrapper {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 0 0 calc((100% - 127.2rem) / 2);
  width: max-content;
  user-select: none;
  cursor: grab;
  transition: transform 1s ease, opacity 1s ease;
}

article.ps div.wrapper.fx {
  transform: translateX(10rem);
  opacity: 0;
}

article.ps div.wrapper section {
  display: block;
  margin: 0 2.4rem 0 0;
  padding: 2rem;
  width: 32rem;
  border-radius: 2rem;
  background-color: #fff;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

article.ps div.wrapper section .thumb {
  width: 100%;
  height: 22rem;
  border-radius: 1.6rem;
}

article.ps div.wrapper section.reels .thumb { background-image: linear-gradient(135deg, #f58529, #dd2a7b); }
article.ps div.wrapper section.shorts .thumb { background-image: linear-gradient(135deg, #ff0000, #ff5e3a); }
article.ps div.wrapper section.tiktok .thumb { background-image: linear-gradient(135deg, #010101, #25f4ee); }

article.ps div.wrapper section h2 {
  margin: 1.8rem 0 0.8rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

article.ps div.wrapper section p {
  width: 100%;
  height: 5.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-sub);
  line-height: 1.85rem;
  overflow: hidden;
}

article.ps div.wrapper section a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
  width: 100%;
  height: 4.4rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  border-radius: 2.2rem;
}

article.ps div.wrapper section.reels a { background: linear-gradient(to right, #f58529, #dd2a7b, #8134af); }
article.ps div.wrapper section.reels a::after { content: "님의 릴스 보러가기"; }
article.ps div.wrapper section.shorts a { background: linear-gradient(to right, #ff0000, #ff5e3a); }
article.ps div.wrapper section.shorts a::after { content: "님의 쇼츠 보러가기"; }
article.ps div.wrapper section.tiktok a { background: linear-gradient(to right, #010101, #25f4ee, #fe2c55); }
article.ps div.wrapper section.tiktok a::after { content: "님의 틱톡 보러가기"; }

/* ---------- BENEFIT ---------- */
article.benefit-title {
  background-color: rgba(244, 246, 249, 1);
}

article.benefit {
  padding: 6rem 2rem 14rem;
  background-color: rgba(244, 246, 249, 1);
}

article.benefit section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 2.4rem;
  padding: 4rem 26rem 4rem 4rem;
  max-width: 105.6rem;
  min-height: 22rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.9rem;
  border-radius: 2rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: calc(100% - 5rem) 50%;
  background-size: 16rem 16rem;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.06);
  transition: opacity 1s ease, transform 1s ease;
}

article.benefit section.fx {
  transform: translateY(5rem);
  opacity: 0;
}

article.benefit section.manager {
  text-align: right;
  align-items: flex-end;
  padding: 4rem 4rem 4rem 26rem;
  background-position: 5rem 50%;
}

article.benefit section h1 {
  width: 100%;
  margin: 0 0 1.2rem;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.6rem;
}

article.benefit section h2 {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

/* ---------- PROCESS ---------- */
article.process {
  padding: 6rem 0 15rem;
  background-color: #fff;
  overflow: hidden;
}

article.process div.wrapper {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  margin: 0 0 0 calc((100% - 127.2rem) / 2);
  width: max-content;
  transition: transform 1s ease, opacity 1s ease;
}

article.process div.wrapper.fx {
  transform: translateX(10rem);
  opacity: 0;
}

article.process div.wrapper::before {
  content: "";
  position: absolute;
  left: 13rem;
  top: 20rem;
  width: 102rem;
  height: 1px;
  background-color: var(--color-primary);
  z-index: 0;
}

article.process div.wrapper input[type="radio"] {
  display: none;
}

article.process div.wrapper label {
  position: relative;
  display: block;
  margin: 0 8rem 0 0;
  padding: 24rem 0 0;
  width: 26rem;
  font-size: 1.5rem;
  color: var(--color-sub);
  line-height: 2.4rem;
  text-align: center;
  cursor: pointer;
  transition: color 0.5s ease;
}

article.process div.wrapper label .step-img {
  position: absolute;
  left: 5rem;
  top: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 1.6rem;
  background-color: #ffd1c2;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity 0.5s ease;
}

article.process div.wrapper input:nth-of-type(1) + label .step-img { background-image: url('../img/sec12-process-step-1.png'); }
article.process div.wrapper input:nth-of-type(2) + label .step-img { background-image: url('../img/sec12-process-step-2.png'); }
article.process div.wrapper input:nth-of-type(3) + label .step-img { background-image: url('../img/sec12-process-step-3.png'); }
article.process div.wrapper input:nth-of-type(4) + label .step-img { background-image: url('../img/sec12-process-step-4.png'); }

article.process div.wrapper label .step-num {
  position: absolute;
  left: 10.5rem;
  top: 17.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-sub);
  background-color: #fff;
  box-sizing: border-box;
  border: 2px solid var(--color-border);
  z-index: 1;
  transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

article.process div.wrapper label h1 {
  margin: 0 0 1rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-sub);
  transition: color 0.5s ease;
}

article.process div.wrapper input[type="radio"]:checked + label {
  color: var(--color-text);
}

article.process div.wrapper input[type="radio"]:checked + label .step-img {
  opacity: 1;
}

article.process div.wrapper input[type="radio"]:checked + label .step-num {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
}

article.process div.wrapper input[type="radio"]:checked + label h1 {
  color: var(--color-text);
}

/* ---------- CONSULTING ---------- */
article.consulting {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44rem;
  padding: 8rem 2rem;
  background: var(--gradient);
  text-align: center;
}

article.consulting div.container {
  max-width: 80rem;
  transition: transform 1s ease, opacity 1s ease;
}

article.consulting div.container.fx {
  transform: translateX(10rem);
  opacity: 0;
}

article.consulting div.container h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

article.consulting div.container h1 {
  margin: 2rem auto 4rem;
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 4.8rem;
}

article.consulting div.container button {
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background-color: #fff;
  border-radius: 3.5rem;
}

/* ---------- PARTNER ---------- */
article.partner {
  padding: 10rem 2rem;
  background-color: #fff;
  text-align: center;
}

article.partner h1 {
  margin: 0 auto 6rem;
  max-width: 100rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 4.4rem;
}

article.partner div.container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  max-width: 127.2rem;
  margin: 0 auto;
}

article.partner div.container div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-sub);
  background-color: var(--color-bg-soft);
  border-radius: 1rem;
}

/* ---------- footer ---------- */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-banner {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.footer-info {
  font-size: 13px;
  line-height: 1.9;
  color: #999;
}

.footer-info b {
  color: #ccc;
}

.footer-links {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
}

/* ---------- popup ---------- */
.popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 280px;
  border-radius: 20px;
  background: var(--gradient);
  color: #fff;
  padding: 28px 24px 20px;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.25);
  z-index: 300;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.popup-eyebrow {
  font-size: 13px;
  opacity: 0.9;
}

.popup-body h3 {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 800;
}

.popup-body .btn-primary {
  margin-top: 16px;
  width: 100%;
  background: #fff;
  color: var(--color-primary);
  box-shadow: none;
  padding: 12px 0;
  font-size: 14px;
}

.popup-hide-today {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

/* ---------- responsive ---------- */
@media (max-width: 675px) {
  
  article.app .app-buttons {
    margin: 3rem 0 0 2rem;
  }

  .header {
    height: 5rem;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(1rem);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .header article {
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 1.5rem;
    width: 100%;
  }

  .header article a:not(.logo) {
    display: none;
  }

  .logo {
    order: -1;
    font-size: 1.6rem;
    color: #fff;
  }

  .logo span {
    color: #fff;
  }

  .header.scrolled .logo {
    color: var(--color-primary);
  }

  .header.scrolled .logo span {
    color: var(--color-text);
  }

  .menu-toggle {
    display: flex;
    order: -2;
  }

  .menu-toggle span {
    background: #fff;
  }

  .header.scrolled .menu-toggle span {
    background: var(--color-text);
  }

  .header article button.tour {
    display: block;
    margin-left: auto;
    width: 7.2rem;
    height: 2.6rem;
    border-radius: 1.3rem;
  }

  .header article button.tour div {
    width: 100%;
    height: 2.6rem;
  }

  .header article button.tour div span {
    height: 2.6rem;
    font-size: 1.1rem;
    line-height: 2.6rem;
  }

  .hero {
    min-height: calc(100vh - 16rem);
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 3rem);
  }

  .hero-stage {
    min-height: calc(100vh - 29rem);
    padding: 0 2rem;
  }

  .hero-inner {
    min-width: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-slides {
    height: clamp(210px, 62vw, 260px);
  }

  .hero-slide .btn-line {
    margin-top: clamp(10px, 3vw, 18px);
    padding: clamp(6px, 1.8vw, 10px) clamp(24px, 8vw, 32px);
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .hero-illust {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 2rem;
    transform: translateX(-50%);
    width: min(52vw, 24vh, 36rem);
    height: min(52vw, 24vh, 36rem);
    opacity: 1;
  }

  .title {
    padding: 8rem 2rem 0;
  }

  .title h1 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }

  .title div.container section.tab label {
    margin: 0 0.6rem;
    width: 10rem;
    font-size: 1.3rem;
  }

  article.service {
    padding: 1rem 0;
  }

  article.service div.container {
    height: 40rem;
  }

  article.service div.container button:hover::after {
    background-color: #c9c9c9;
  }

  article.service div.container div.wrapper {
    padding-left: 100vw;
  }

  
  article.service div.container button::before {
    width: 85%;
    height: 85%;
  }

  article.service div.container button::after {
    width: 85%;
    height: 85%;
  }

  article.service div.wrapper section {
    width: 100vw;
    padding: 0;
    background: no-repeat 50% 0 / calc(100% - 6rem) auto;
  }

  article.service div.wrapper section div {
    margin: 22rem auto 0;
    padding: 1.5rem 8rem 1.5rem 1.5rem;
    width: calc(100vw - 7rem);
    height: 12.5rem;
    font-size: 1.1rem;
    line-height: 1.45rem;
    background-position: calc(100% - 1.5rem) 1.5rem;
    background-repeat: no-repeat;
    background-size: 5.4rem 5.4rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    border-radius: 0.8rem;
  }

  article.service div.wrapper section div h1 {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
  }

  article.service div.wrapper section div a {
    margin: 1.5rem 0 0;
    padding: 0 1.5rem 0 0;
    height: 0.85rem;
    font-size: 0.85rem;
    line-height: 0.85rem;
  }

  article.service div.wrapper section div a::after {
    width: 0.85rem;
    height: 0.85rem;
  }
  

  article.service-ctg {
    height: 1px;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
  }

  article.exp {
    flex-direction: column;
  }

  article.exp section.fig {
    order: -1;
  }

  article.exp section.type {
    gap: 1.2rem;
  }

  article.exp section.type label {
    width: calc(50% - 0.6rem);
    height: 14rem;
    padding: 0 1rem;
    font-size: 1.1rem;
    line-height: 1.7rem;
    word-break: keep-all;
  }

  article.exp section.type label h1 {
    font-size: 1.3rem;
    word-break: keep-all;
  }

  article.exp section.fig {
    width: 100%;
    height: 30rem;
  }

  article.exp section.fig div.wrapper {
    height: 30rem;
  }

  article.exp section.fig div.wrapper div {
    height: 30rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 250, 245, 1);
  }

  article.platform div.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  article.platform div.container section {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 2rem;
  }

  article.platform div.container section h3 {
    font-size: 2.2rem;
  }

  article.platform div.container section::after {
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  article.platform div.container section .pf-suffix {
    font-size: 1.4rem;
  }

  article.platform div.container section .platform-source {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  article.app div.container {
    text-align: center;
    justify-content: center;
  }

  article.app .app-copy p {
    font-size: 1.3rem;
  }

  article.app .app-copy h1 {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }

  article.app .app-buttons {
    justify-content: center;
  }

  article.campaign div.wrapper,
  article.ps div.wrapper,
  article.process div.wrapper {
    margin-left: 1.5rem;
  }

  article.campaign div.wrapper section,
  article.ps div.wrapper section {
    width: 52vw;
  }

  article.benefit section {
    text-align: center !important;
    align-items: center !important;
    padding: 22rem 3rem 3rem !important;
    background-position: 50% 1.5rem !important;
    background-size: 20rem 20rem !important;
  }

  article.process div.wrapper label {
    width: 18rem;
    margin: 0 5rem 0 0;
    padding: 18.5rem 0 0;
    font-size: 1.2rem;
    line-height: 1.9rem;
  }

  article.process div.wrapper label .step-img {
    left: 3rem;
    width: 12rem;
    height: 12rem;
    border-radius: 1.2rem;
  }

  article.process div.wrapper label .step-num {
    left: 7rem;
    top: 13.2rem;
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }

  article.process div.wrapper label h1 {
    font-size: 1.5rem;
  }

  article.process div.wrapper::before {
    left: 9rem;
    top: 15.2rem;
    width: 69rem;
  }

  article.consulting div.container h1 {
    font-size: 2rem;
    line-height: 3rem;
    word-break: keep-all;
  }

  article.consulting div.container h2 {
    font-size: 1.3rem;
  }

  article.partner h1 {
    padding: 0 1rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
    word-break: keep-all;
  }

  article.partner div.container {
    grid-template-columns: repeat(2, 1fr);
  }

  .popup {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 16px;
  }
  
  article.example div.container section {
    gap: 2rem;
    padding: 2rem 2.4rem 2.2rem 1.8rem;
    font-size: 1.5rem;
    line-height: 2rem;
  } 

  article.example div.container section > div {
    height: fit-content;
    margin: auto 0;
  }

  .example .container {
    width: 100% !important;
    height: auto;
    background: no-repeat 0 0 / 58vw 58vw url(/img/sec08-example-bg.png) !important;
  }
}

.example .container {
  margin: 0 auto;
  width: 100vw;
  height: 100%;
  background: no-repeat 0 -2rem / 48rem 48rem url(/img/sec08-example-bg.png);
}

@media (max-width: 36rem) {
  .example .container {
    width: 100% !important;
    height: auto;
    background: no-repeat 0 0 / 34rem 34rem url(/img/sec08-example-bg.png) !important;
  }
}

/* ==========================================================
   2026-07-22 김재영 수정
   ========================================================== */

/* /index — 성공적인 사업을 위한 필수 APP 섹션 */
article.app { display: none; }

/* /index — 크리에이터의 생생한 콘텐츠 섹션 */
article.ps-title,
article.ps { display: none; }

/* 2026-07-23 김재영 수정 — /index 캠페인 탭 릴스·틱톡 라벨 숨김 */
.title div.container section.tab label[for="cmp1"],
.title div.container section.tab label[for="cmp3"] { display: none; }

/* 2026-07-23 김재영 수정 — /services 성공사례 섹션 숨김 */
.services-main .container article section.ex { display: none; }

/* 2026-07-23 김재영 수정 — 헤더 성공사례 링크 숨김 */
.header article a[href="examples.html"],
.mobile-nav a[href="examples.html"] { display: none; }