@charset "UTF-8";

/* Paperlogy Webfont */
@font-face {
  font-family: "Paperlogy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-7Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Paperlogy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy-8ExtraBold.woff2") format("woff2");
}

/* Tossface Emoji Font */
@font-face {
  font-family: "Tossface";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/toss/tossface/dist/TossFaceFontWeb.otf") format("opentype");
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  color: #101229;
  background: #ffffff;
  word-break: keep-all;
}

body.is-campaign-dragging {
  user-select: none;
  -webkit-user-select: none;
  cursor: grabbing;
}

body.reference-modal-open {
  overflow: visible;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 18, 41, 0.08);
}

.header-inner {
  width: min(100%, 1840px);
  height: 112px;
  margin: 0 auto;
  padding: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  order: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 42px;
  width: auto;
}

.gnb {
  order: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  font-size: 18px;
  font-weight: 700;
  color: #151515;
}

.gnb a {
  position: relative;
  transition: color 0.2s ease;
}

.gnb a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: #6d42ff;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.gnb a:hover {
  color: #6d42ff;
}

.gnb a:hover::after {
  width: 100%;
}

.language-switch {
  order: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: none;
  background: transparent;
  flex-shrink: 0;
}

.language-switch button {
  width: auto;
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0.36;
  filter: grayscale(28%) brightness(0.88);
  transform: scale(0.96);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.language-switch button.active {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.language-switch button:hover {
  opacity: 0.72;
  filter: grayscale(10%) brightness(0.96);
  transform: scale(1.04);
}

.language-switch button.active:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.04);
}

.flag-emoji,
.badge-emoji,
.keyword-emoji,
.growth-icon,
.reference-icon {
  font-family: "Tossface", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.flag-emoji {
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero-section {
  position: relative;
  width: 100%;
  padding: 32px 54px 34px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: min(100%, 1784px);
  height: 820px;
  min-height: 820px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(120deg, #eee5ff 0%, #fff7fd 48%, #ffdfe4 100%);
  box-shadow: 0 24px 80px rgba(111, 68, 255, 0.08);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.hero-slider.dragging {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 80px 74px 86px;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: absolute;
  transform: none;
}

.hero-slider.dragging .hero-slide.active {
  transform: translateX(var(--hero-drag-x, 0px));
  transition: none;
}

.hero-slider.slide-next .hero-slide.active,
.hero-slider.slide-prev .hero-slide.active {
  animation: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 54px;
  padding: 0 24px;
  margin-bottom: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 8px 24px rgba(111, 68, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  color: #6d42ff;
  font-size: 18px;
  font-weight: 700;
}

.badge-emoji {
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  margin-bottom: 30px;
  font-family: "Paperlogy", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: clamp(48px, 4.7vw, 82px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #080b29;
}

.hero-content h1 em {
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.055em;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 60%, #ff4c88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin-bottom: 38px;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #30364f;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  height: 74px;
  min-width: 310px;
  padding: 0 34px 0 42px;
  border-radius: 18px;
  background: #070925;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 16px 28px rgba(7, 9, 37, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button span {
  font-size: 32px;
  line-height: 1;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(7, 9, 37, 0.26);
}

.hero-keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 70px;
}

.hero-keywords div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 26px;
  font-size: 18px;
  font-weight: 800;
  color: #15182f;
}

.hero-keywords div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 30px;
  background: rgba(16, 18, 41, 0.12);
}

.keyword-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 68, 255, 0.16);
  box-shadow: 0 8px 18px rgba(111, 68, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.keyword-emoji {
  font-size: 26px;
  line-height: 1;
}

.hero-image-area {
  width: 100%;
  min-height: 620px;
}

.hero-image-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.slider-dots button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d8d8dc;
  transition: all 0.2s ease;
}

.slider-dots button.active {
  background: #6d42ff;
  box-shadow: 0 0 0 6px rgba(109, 66, 255, 0.12);
}

/* Growth Section */
.growth-section {
  padding: 76px 54px 80px;
  background: #ffffff;
}

.growth-inner {
  width: min(100%, 1784px);
  margin: 0 auto;
}

.section-title-area {
  margin-bottom: 48px;
  text-align: center;
}

.growth-section .section-label {
  display: none;
}

.section-label {
  align-items: center;
  height: 38px;
  padding: 0 18px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6e45ff 0%, #8b52ff 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(111, 68, 255, 0.18);
}

.section-title-area h2 {
  margin-bottom: 22px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(40px, 3.2vw, 62px);
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #080b29;
}

.section-title-area h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 64%, #ff4c88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub-text {
  max-width: 1180px;
  margin: 0 auto;
  color: #4b5068;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: stretch;
}

.growth-main-card {
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(111, 68, 255, 0.1);
  box-shadow: 0 24px 64px rgba(89, 76, 160, 0.12);
}

.growth-visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: linear-gradient(135deg, #eff8ff 0%, #f8f4ff 52%, #ffeaf0 100%);
}

.growth-visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.growth-side-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.growth-info-card {
  position: relative;
  min-height: 263px;
  padding: 38px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(111, 68, 255, 0.1);
  box-shadow: 0 24px 64px rgba(89, 76, 160, 0.12);
}

.growth-icon {
  position: absolute;
  right: 32px;
  top: 32px;
  z-index: 1;
  color: #6d42ff;
  font-size: 28px;
  line-height: 1;
}

.growth-info-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  padding-right: 54px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #080b29;
}

.growth-info-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 14px;
  color: #6d42ff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.growth-info-card p {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 500;
  color: #4b5068;
  letter-spacing: -0.035em;
}

.growth-bottom-copy {
  margin-top: 28px;
  text-align: center;
  color: #6d748e;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

/* Package Section */
.package-section {
  padding: 72px 54px 110px;
  background: #ffffff;
}

.package-inner {
  width: min(100%, 1784px);
  margin: 0 auto;
}

.package-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.package-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition:
    opacity 0.36s ease,
    visibility 0.36s ease;
}

.package-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: absolute;
  transform: none;
}

.package-visual {
  min-height: 620px;
}

.package-visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border-radius: 34px 0 0 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9fc 0%, #f4f2ff 55%, #fdf0f5 100%);
  border: 1px solid rgba(111, 68, 255, 0.08);
}

.package-visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-panel {
  min-height: 620px;
  border-radius: 0 34px 34px 0;
  padding: 82px 76px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, #eef1ff 0%, #e9e5ff 48%, #f8edf7 100%);
  color: #101229;
  border: 1px solid rgba(111, 68, 255, 0.08);
  box-shadow: 0 24px 64px rgba(89, 76, 160, 0.12);
}

.package-copy h2 {
  margin-bottom: 32px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(40px, 2.8vw, 62px);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: #101229;
}

.package-copy h2 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 60%, #ff4c88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-copy p {
  font-size: clamp(18px, 1.18vw, 23px);
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #353b55;
}

.package-copy p em {
  font-style: normal;
  font-weight: 800;
  color: #6d42ff;
}

.package-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  margin-top: 74px;
}

.package-nav-arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #56607d;
  font-size: 28px;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.package-nav-arrow:hover {
  color: #6d42ff;
  transform: translateY(-1px);
}

.package-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #353b55;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.package-divider,
.package-total {
  opacity: 0.55;
}

/* Execution Service Section */
.execution-section {
  padding: 72px 54px 120px;
  background: #ffffff;
}

.execution-inner {
  position: relative;
  width: min(100%, 1784px);
  margin: 0 auto;
}

.execution-title-area {
  margin-bottom: 36px;
  text-align: center;
}

.execution-title-area h2 {
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(44px, 3.45vw, 72px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #080b29;
}

.execution-title-area h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #5c34ff 0%, #a83ce9 58%, #ec4bc0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.execution-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1420px;
  margin: 0 auto 62px;
}

.execution-tab {
  height: 72px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(16, 18, 41, 0.14);
  color: #15182f;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 28px rgba(16, 18, 41, 0.04);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.execution-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 66, 255, 0.32);
}

.execution-tab.active {
  background: #070925;
  color: #ffffff;
  border-color: #070925;
  box-shadow: 0 14px 28px rgba(7, 9, 37, 0.18);
}

.execution-stage {
  position: relative;
  width: min(100%, 1500px);
  min-height: 640px;
  margin: 0 auto;
  overflow: visible;
}

.execution-slide {
  display: none;
  grid-template-columns: minmax(520px, 650px) minmax(620px, 760px);
  gap: 42px;
  align-items: center;
  justify-content: center;
  min-height: 640px;
}

.execution-slide.active {
  display: grid;
  animation: executionSlideIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes executionSlideIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.execution-copy {
  width: 100%;
  max-width: 650px;
  padding-left: 0;
  justify-self: end;
}

.execution-copy h3 {
  margin-bottom: 42px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(34px, 2.35vw, 48px);
  line-height: 1.34;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: #080b29;
}

.execution-copy h3 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #5c34ff 0%, #8a3ff2 55%, #d943d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.execution-copy ul {
  display: grid;
  gap: 22px;
  margin-bottom: 54px;
  list-style: none;
}

.execution-copy li {
  position: relative;
  padding-left: 46px;
  color: #20263f;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.execution-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a33ff 0%, #8d43ff 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(93, 52, 255, 0.24);
}

.execution-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  height: 78px;
  min-width: 300px;
  padding: 0 36px 0 44px;
  border-radius: 999px;
  background: linear-gradient(90deg, #551dff 0%, #8428f2 52%, #d638d0 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.045em;
  box-shadow: 0 18px 34px rgba(100, 42, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.execution-button span {
  font-size: 34px;
  line-height: 1;
}

.execution-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(100, 42, 255, 0.28);
}

.execution-visual {
  width: 100%;
  max-width: none;
  min-height: 620px;
  justify-self: stretch;
  border-radius: 34px;
  background: #f7f5ff;
  border: 1px solid rgba(111, 68, 255, 0.08);
  overflow: hidden;
}

.execution-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.execution-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #080b29;
  font-size: 44px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(16, 18, 41, 0.12);
  transform: translateY(-50%);
  transition: transform 0.2s ease, color 0.2s ease;
}

.execution-arrow:hover {
  color: #6d42ff;
  transform: translateY(-50%) scale(1.04);
}

.execution-prev {
  left: -76px;
}

.execution-next {
  right: -76px;
}

/* Campaign Section */
.campaign-section {
  padding: 96px 54px 110px;
  background: #ffffff;
  overflow: hidden;
}

.campaign-inner {
  position: relative;
  width: min(100%, 1784px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.campaign-title-area {
  margin-bottom: 58px;
  text-align: center;
}

.campaign-title-dot {
  display: none;
}

.campaign-title-area h2 {
  margin-bottom: 22px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(44px, 3.45vw, 72px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #080b29;
}

.campaign-title-area h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 62%, #ff4c88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campaign-title-area p {
  color: #4b5068;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.campaign-slider-area {
  position: relative;
  width: 100%;
}

.campaign-card-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.campaign-card-list.dragging {
  cursor: grabbing;
}

.campaign-card {
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 18, 41, 0.12);
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.campaign-card * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.campaign-image {
  width: 100%;
  aspect-ratio: 1 / 1.62;
  background:
    linear-gradient(
      135deg,
      rgba(238, 229, 255, 0.88) 0%,
      rgba(255, 247, 253, 0.95) 48%,
      rgba(255, 223, 228, 0.82) 100%
    );
  -webkit-user-drag: none;
}

.campaign-info {
  padding: 28px 22px 32px;
}

.campaign-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.campaign-channel {
  color: #5a25f0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.campaign-channel.pink {
  color: #ff3f92;
}

.campaign-channel.blue {
  color: #1874ff;
}

.campaign-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f0e6ff;
  color: #6d42ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.campaign-status.pink {
  background: #ffe4ef;
  color: #ff3f92;
}

.campaign-info h3 {
  margin-bottom: 16px;
  color: #080b29;
  font-size: 23px;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.campaign-info p {
  color: #6d748e;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.035em;
}

/* Reference Section */
.reference-section {
  padding: 96px 54px 120px;
  background: #ffffff;
  overflow: hidden;
}

.reference-inner {
  width: min(100%, 1784px);
  margin: 0 auto;
}

.reference-title-area {
  margin-bottom: 70px;
  text-align: center;
}

.reference-title-area h2 {
  margin-bottom: 24px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(44px, 3.45vw, 72px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #080b29;
}

.reference-title-area h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 62%, #ff4c88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reference-title-area p {
  color: #4b5068;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.reference-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.reference-card {
  position: relative;
  padding: 30px 30px 38px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(16, 18, 41, 0.1);
  box-shadow: 0 24px 64px rgba(16, 18, 41, 0.1);
  text-align: center;
}

.reference-image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(238, 229, 255, 0.88) 0%,
      rgba(255, 247, 253, 0.96) 52%,
      rgba(255, 223, 228, 0.82) 100%
    );
  overflow: hidden;
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin: -36px auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(109, 66, 255, 0.12);
  box-shadow: 0 12px 30px rgba(16, 18, 41, 0.12);
  font-size: 34px;
}

.reference-content h3 {
  margin-bottom: 22px;
  color: #080b29;
  font-size: 31px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.reference-content p {
  max-width: 430px;
  min-height: 82px;
  margin: 0 auto 36px;
  color: #4b5068;
  font-size: 18px;
  line-height: 1.58;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.reference-button {
  width: 100%;
  height: 68px;
  border-radius: 999px;
  background: linear-gradient(90deg, #551dff 0%, #6d32ff 100%);
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 16px 30px rgba(93, 52, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reference-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(93, 52, 255, 0.28);
}

/* Reference Modal */
.reference-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.reference-modal.active {
  display: flex;
}

.reference-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 37, 0.46);
  backdrop-filter: blur(8px);
}

.reference-modal-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: 58px 54px 56px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(7, 9, 37, 0.28);
}

.reference-modal-close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f8;
  color: #080b29;
  font-size: 30px;
  line-height: 1;
}

.reference-modal-content {
  display: none;
}

.reference-modal-content.active {
  display: block;
}

.reference-modal-label {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(109, 66, 255, 0.1);
  color: #6d42ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.reference-modal-image {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  margin-bottom: 34px;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(238, 229, 255, 0.9) 0%,
      rgba(255, 247, 253, 0.98) 50%,
      rgba(255, 223, 228, 0.86) 100%
    );
  overflow: hidden;
}

.reference-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reference-modal-content h3 {
  margin-bottom: 22px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: 42px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #080b29;
}

.reference-modal-content p {
  margin-bottom: 30px;
  color: #4b5068;
  font-size: 19px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.reference-modal-content ul {
  display: grid;
  gap: 14px;
  list-style: none;
}

.reference-modal-content li {
  position: relative;
  padding-left: 34px;
  color: #20263f;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.reference-modal-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #6d42ff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

/* Brand Section */
.brand-section {
  padding: 96px 54px 120px;
  background: #ffffff;
  overflow: hidden;
}

.brand-inner {
  width: min(100%, 1784px);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.brand-title-area {
  margin-bottom: 70px;
  text-align: center;
}

.brand-title-area h2 {
  margin-bottom: 24px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(44px, 3.45vw, 72px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #080b29;
}

.brand-title-area h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 62%, #ff4c88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-title-area p {
  color: #4b5068;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1340px;
  margin: 0 auto;
}

.brand-logo-card {
  position: relative;
  height: 180px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 18, 41, 0.08);
  box-shadow: 0 18px 42px rgba(16, 18, 41, 0.08);
  overflow: hidden;
}

.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(238, 229, 255, 0.32) 0%,
      rgba(255, 255, 255, 0.96) 46%,
      rgba(255, 223, 228, 0.24) 100%
    );
  opacity: 0.6;
}

.brand-logo-card img {
  position: relative;
  z-index: 1;
  width: 74%;
  height: 64%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1440px) {
  .header-inner {
    height: 96px;
    padding: 0 36px;
  }

  .gnb {
    gap: 42px;
    font-size: 16px;
  }

  .logo img {
    height: 38px;
  }

  .flag-emoji {
    font-size: 24px;
  }

  .hero-section {
    padding: 28px 36px 30px;
  }

  .hero-slider {
    height: 760px;
    min-height: 760px;
  }

  .hero-slide {
    padding: 68px 56px 78px;
  }

  .hero-keywords {
    margin-top: 52px;
  }

  .growth-section {
    padding: 68px 36px 76px;
  }

  .growth-info-card {
    padding: 32px;
  }

  .growth-info-card h3 {
    font-size: 28px;
  }

  .package-section {
    padding: 68px 36px 96px;
  }

  .package-stage {
    min-height: 590px;
  }

  .package-visual,
  .package-visual-placeholder,
  .package-panel {
    min-height: 560px;
  }

  .package-panel {
    padding: 70px 56px 62px;
  }

  .package-pagination {
    font-size: 22px;
  }

  .execution-section {
    padding: 68px 36px 100px;
  }

  .execution-stage {
    width: min(100%, 1360px);
  }

  .execution-tabs {
    gap: 14px;
    margin-bottom: 52px;
  }

  .execution-tab {
    height: 64px;
    font-size: 19px;
  }

  .execution-slide {
    grid-template-columns: minmax(480px, 610px) minmax(560px, 690px);
    gap: 38px;
  }

  .execution-copy {
    max-width: 610px;
    padding-left: 0;
  }

  .execution-copy h3 {
    font-size: clamp(32px, 2.3vw, 44px);
  }

  .execution-copy li {
    font-size: 19px;
  }

  .execution-visual {
    min-height: 560px;
  }

  .execution-prev {
    left: -28px;
  }

  .execution-next {
    right: -28px;
  }

  .campaign-section {
    padding: 86px 36px 100px;
  }

  .campaign-card-list {
    gap: 16px;
  }

  .campaign-info {
    padding: 24px 18px 28px;
  }

  .campaign-info h3 {
    font-size: 20px;
  }

  .campaign-channel {
    font-size: 16px;
  }

  .reference-section {
    padding: 86px 36px 110px;
  }

  .reference-card-grid {
    gap: 28px;
  }

  .reference-card {
    padding: 26px 26px 34px;
  }

  .reference-content h3 {
    font-size: 27px;
  }

  .reference-content p {
    max-width: 360px;
    min-height: 76px;
    font-size: 16px;
    line-height: 1.55;
  }

  .reference-button {
    height: 62px;
    font-size: 19px;
  }

  .brand-section {
    padding: 86px 36px 110px;
  }

  .brand-inner {
    padding: 0;
  }

  .brand-logo-grid {
    gap: 24px;
  }

  .brand-logo-card {
    height: 158px;
  }
}

@media (max-width: 1300px) {
  .campaign-slider-area {
    width: calc(100% + 72px);
    margin-left: -36px;
    overflow: hidden;
  }

  .campaign-card-list {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 36px 34px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 36px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #6d42ff #eef0f7;
    cursor: grab;
  }

  .campaign-card-list.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .campaign-card-list::-webkit-scrollbar {
    height: 8px;
  }

  .campaign-card-list::-webkit-scrollbar-track {
    background: #eef0f7;
    border-radius: 999px;
  }

  .campaign-card-list::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6e45ff 0%, #df43cf 70%, #ff4c88 100%);
    border-radius: 999px;
  }

  .campaign-card-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #5a33ff 0%, #c93bd0 70%, #f24588 100%);
  }

  .campaign-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .campaign-image {
    aspect-ratio: 1 / 1.5;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 24px;
  }

  .gnb {
    gap: 26px;
  }

  .language-switch {
    gap: 13px;
  }

  .hero-slider {
    height: 760px;
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-image-area {
    display: none;
  }

  .hero-keywords {
    max-width: 680px;
  }

  .growth-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .growth-main-card,
  .growth-visual-placeholder {
    min-height: 460px;
  }

  .growth-bottom-copy,
  .section-sub-text {
    white-space: normal;
  }

  .package-stage {
    min-height: 930px;
  }

  .package-slide {
    grid-template-columns: 1fr;
  }

  .package-visual-placeholder {
    border-radius: 34px 34px 0 0;
  }

  .package-panel {
    min-height: 380px;
    border-radius: 0 0 34px 34px;
    padding: 58px 48px 62px;
  }

  .package-controls {
    margin-top: 48px;
  }

  .execution-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .execution-stage {
    width: 100%;
    min-height: 980px;
  }

  .execution-slide {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 980px;
  }

  .execution-copy {
    max-width: 820px;
    justify-self: stretch;
    padding-left: 0;
  }

  .execution-visual {
    max-width: none;
    min-height: 480px;
    justify-self: stretch;
  }

  .execution-arrow {
    top: auto;
    bottom: 510px;
    transform: none;
  }

  .execution-arrow:hover {
    transform: scale(1.04);
  }

  .execution-prev {
    left: 0;
  }

  .execution-next {
    right: 0;
  }

  .reference-card-grid {
    gap: 24px;
  }

  .reference-card {
    padding: 24px 24px 32px;
  }

  .reference-content h3 {
    font-size: 25px;
  }

  .reference-content p {
    max-width: 320px;
    min-height: 70px;
    font-size: 15px;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
}

/* Mobile / Tablet */
@media (max-width: 960px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    height: auto;
    padding: 22px 24px 28px;
    flex-wrap: wrap;
    gap: 22px;
  }

  .logo {
    order: 1;
    width: calc(100% - 150px);
  }

  .logo img {
    height: 36px;
  }

  .language-switch {
    order: 2;
    margin-left: auto;
    gap: 14px;
  }

  .gnb {
    order: 3;
    flex: none;
    width: 100%;
    justify-content: center;
    text-align: center;
    overflow-x: visible;
    padding-top: 8px;
    gap: 30px;
    white-space: nowrap;
    font-size: 18px;
  }

  .hero-section {
    padding: 24px 24px 30px;
  }

  .hero-slider {
    height: 820px;
    min-height: 820px;
    border-radius: 22px;
  }

  .hero-slide {
    display: block;
    padding: 54px 32px 52px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    min-height: 714px;
    max-width: 100%;
  }

  .hero-badge {
    order: 1;
    width: auto;
    max-width: 100%;
    align-self: flex-start;
  }

  .hero-content h1 {
    order: 2;
    font-size: 46px;
  }

  .hero-content p {
    order: 3;
    font-size: 19px;
  }

  .hero-keywords {
    order: 4;
    margin-top: 36px;
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: none;
  }

  .hero-slide:first-child .hero-keywords {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .hero-keywords div {
    width: 100%;
    font-size: 20px;
    padding-right: 0;
  }

  .hero-keywords div::after {
    display: none;
  }

  .keyword-icon {
    width: 54px;
    height: 54px;
  }

  .keyword-emoji {
    font-size: 26px;
  }

  .hero-button {
    order: 5;
    width: 100%;
    min-width: 0;
    height: 76px;
    margin-top: auto;
    font-size: 26px;
    border-radius: 22px;
  }

  .growth-section {
    padding: 52px 24px 60px;
  }

  .section-title-area {
    text-align: left;
    margin-bottom: 24px;
  }

  .section-sub-text {
    margin: 0;
  }

  .growth-grid {
    gap: 18px;
  }

  .growth-main-card,
  .growth-visual-placeholder {
    min-height: 380px;
  }

  .growth-side-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .growth-info-card {
    min-height: auto;
    padding: 30px;
  }

  .growth-icon {
    right: 28px;
    top: 28px;
    font-size: 26px;
  }

  .growth-info-card h3 {
    font-size: 27px;
  }

  .growth-bottom-copy {
    margin-top: 22px;
    text-align: center;
    font-size: 16px;
    line-height: 1.45;
    white-space: normal;
  }

  .package-section {
    padding: 60px 24px 86px;
  }

  .package-stage {
    min-height: 840px;
  }

  .package-visual,
  .package-visual-placeholder {
    min-height: 380px;
  }

  .package-slide {
    grid-template-columns: 1fr;
  }

  .package-visual-placeholder {
    border-radius: 34px 34px 0 0;
  }

  .package-panel {
    min-height: 360px;
    border-radius: 0 0 34px 34px;
    padding: 50px 36px 54px;
  }

  .package-copy h2 {
    font-size: 40px;
  }

  .package-copy p {
    font-size: 18px;
    line-height: 1.7;
  }

  .package-controls {
    margin-top: 42px;
    gap: 18px;
  }

  .package-pagination {
    font-size: 20px;
  }

  .package-nav-arrow {
    font-size: 26px;
  }

  .execution-section {
    padding: 60px 24px 86px;
  }

  .execution-title-area {
    margin-bottom: 28px;
    text-align: left;
  }

  .execution-title-area h2 {
    font-size: 40px;
  }

  .execution-tabs {
    display: flex;
    gap: 10px;
    width: calc(100% + 48px);
    max-width: none;
    margin: -10px 0 18px -24px;
    padding: 10px 24px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
  }

  .execution-tabs.dragging {
    cursor: grabbing;
  }

  .execution-tabs::-webkit-scrollbar {
    display: none;
  }

  .execution-tab {
    flex: 0 0 auto;
    min-width: max-content;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
    scroll-snap-align: center;
    box-shadow: none;
  }

  .execution-tab.active {
    box-shadow: none;
  }

  .execution-tab:hover {
    box-shadow: none;
    transform: none;
  }

  .execution-stage {
    width: 100%;
    min-height: auto;
  }

  .execution-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .execution-slide.active {
    display: flex;
    flex-direction: column;
  }

  .execution-visual {
    order: 1;
    width: 100%;
    max-width: none;
    min-height: 360px;
    justify-self: stretch;
    border-radius: 28px;
  }

  .execution-copy {
    order: 2;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding-left: 0;
  }

  .execution-copy h3 {
    margin-bottom: 26px;
    font-size: 30px;
    line-height: 1.34;
    letter-spacing: -0.06em;
  }

  .execution-copy ul {
    gap: 14px;
    margin-bottom: 28px;
  }

  .execution-copy li {
    padding-left: 38px;
    font-size: 17px;
  }

  .execution-copy li::before {
    width: 25px;
    height: 25px;
    font-size: 15px;
    line-height: 25px;
  }

  .execution-button {
    width: 100%;
    height: 64px;
    min-width: 0;
    padding: 0 28px 0 34px;
    font-size: 20px;
  }

  .execution-button span {
    font-size: 28px;
  }

  .execution-arrow {
    top: 236px;
    bottom: auto;
    width: 44px;
    height: 44px;
    font-size: 34px;
    transform: none;
  }

  .execution-arrow:hover {
    transform: scale(1.04);
  }

  .execution-prev {
    left: 10px;
  }

  .execution-next {
    right: 10px;
  }

  .campaign-section {
    padding: 70px 24px 86px;
  }

  .campaign-title-area {
    margin-bottom: 40px;
    text-align: left;
  }

  .campaign-title-area h2 {
    font-size: 40px;
  }

  .campaign-title-area p {
    font-size: 17px;
  }

  .campaign-slider-area {
    width: calc(100% + 48px);
    margin-left: -24px;
  }

  .campaign-card-list {
    gap: 16px;
    padding: 0 24px 34px;
    scroll-padding-inline: 24px;
  }

  .campaign-card {
    flex-basis: 270px;
  }

  .campaign-image {
    aspect-ratio: 1 / 1.35;
  }

  .reference-section {
    padding: 70px 24px 86px;
  }

  .reference-title-area {
    margin-bottom: 40px;
    text-align: left;
  }

  .reference-title-area h2 {
    font-size: 40px;
  }

  .reference-title-area p {
    font-size: 17px;
  }

  .reference-card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reference-card {
    text-align: left;
  }

  .reference-icon {
    margin-left: 0;
  }

  .reference-content p {
    max-width: none;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    font-size: 17px;
    text-wrap: auto;
  }

  .reference-modal {
    align-items: flex-end;
    padding: 18px;
  }

  .reference-modal-panel {
    width: 100%;
    max-height: 86vh;
    padding: 46px 28px 38px;
    border-radius: 28px;
  }

  .reference-modal-image {
    aspect-ratio: 1.35 / 1;
    margin-bottom: 26px;
    border-radius: 20px;
  }

  .reference-modal-content h3 {
    font-size: 32px;
  }

  .reference-modal-content p {
    font-size: 16px;
  }

  .reference-modal-content li {
    font-size: 15px;
  }

  .brand-section {
    padding: 70px 24px 86px;
  }

  .brand-inner {
    padding: 0;
    border-radius: 0;
  }

  .brand-title-area {
    margin-bottom: 40px;
    text-align: left;
  }

  .brand-title-area h2 {
    font-size: 40px;
  }

  .brand-title-area p {
    font-size: 17px;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brand-logo-card {
    height: 128px;
    border-radius: 18px;
  }
}

/* Small Mobile */
@media (max-width: 560px) {
  .header-inner {
    padding: 18px 18px 24px;
    gap: 20px;
  }

  .logo {
    width: calc(100% - 120px);
  }

  .logo img {
    height: 32px;
  }

  .language-switch {
    gap: 10px;
  }

  .language-switch button {
    transform: scale(0.94);
  }

  .language-switch button.active {
    transform: scale(1);
  }

  .language-switch button:hover {
    transform: scale(1.02);
  }

  .flag-emoji {
    font-size: 22px;
  }

  .gnb {
    gap: 22px;
    font-size: 15px;
  }

  .hero-section {
    padding: 18px 18px 26px;
  }

  .hero-slider {
    height: 640px;
    min-height: 640px;
  }

  .hero-slide {
    padding: 42px 24px 48px;
  }

  .hero-content {
    min-height: 550px;
  }

  .hero-badge {
    width: auto;
    max-width: 100%;
    align-self: flex-start;
    height: 44px;
    padding: 0 18px;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .badge-emoji {
    font-size: 18px;
  }

  .hero-content h1 {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1.25;
  }

  .hero-content p {
    margin-bottom: 0;
    font-size: 16px;
  }

  .hero-keywords {
    margin-top: 28px;
    margin-bottom: 30px;
    gap: 18px;
  }

  .hero-slide:first-child .hero-keywords {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .hero-keywords div {
    font-size: 17px;
  }

  .keyword-icon {
    width: 48px;
    height: 48px;
  }

  .keyword-emoji {
    font-size: 24px;
  }

  .hero-button {
    height: 64px;
    margin-top: auto;
    font-size: 20px;
    border-radius: 18px;
  }

  .slider-dots {
    gap: 16px;
    margin-top: 24px;
  }

  .slider-dots button {
    width: 12px;
    height: 12px;
  }

  .growth-section {
    padding: 46px 18px 52px;
  }

  .section-label {
    height: 34px;
    padding: 0 14px;
    font-size: 12px;
  }

  .section-title-area {
    margin-bottom: 18px;
  }

  .section-title-area h2 {
    font-size: 34px;
  }

  .section-sub-text {
    font-size: 16px;
  }

  .growth-grid {
    gap: 14px;
  }

  .growth-main-card {
    border-radius: 28px;
  }

  .growth-main-card,
  .growth-visual-placeholder {
    min-height: 320px;
  }

  .growth-side-cards {
    gap: 14px;
  }

  .growth-info-card {
    padding: 26px;
    border-radius: 28px;
  }

  .growth-icon {
    right: 24px;
    top: 24px;
    font-size: 24px;
  }

  .growth-info-card h3 {
    font-size: 26px;
    padding-right: 44px;
  }

  .growth-info-card strong {
    font-size: 18px;
  }

  .growth-info-card p {
    font-size: 16px;
  }

  .growth-bottom-copy {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
  }

  .package-section {
    padding: 52px 18px 76px;
  }

  .package-stage {
    min-height: 710px;
  }

  .package-visual,
  .package-visual-placeholder {
    min-height: 260px;
  }

  .package-visual-placeholder {
    border-radius: 24px 24px 0 0;
  }

  .package-panel {
    min-height: 330px;
    border-radius: 0 0 24px 24px;
    padding: 38px 24px 42px;
  }

  .package-copy h2 {
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 1.3;
  }

  .package-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .package-controls {
    margin-top: 34px;
    gap: 14px;
  }

  .package-pagination {
    font-size: 18px;
  }

  .package-nav-arrow {
    width: 24px;
    height: 24px;
    font-size: 22px;
  }

  .execution-section {
    padding: 52px 18px 76px;
  }

  .execution-title-area {
    margin-bottom: 24px;
  }

  .execution-title-area h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .execution-tabs {
    width: calc(100% + 36px);
    margin: -10px 0 16px -18px;
    padding: 10px 18px 14px;
    gap: 8px;
    scroll-padding-inline: 18px;
  }

  .execution-tab {
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
    box-shadow: none;
  }

  .execution-tab.active {
    box-shadow: none;
  }

  .execution-tab:hover {
    box-shadow: none;
    transform: none;
  }

  .execution-slide {
    gap: 24px;
  }

  .execution-visual {
    min-height: 280px;
    border-radius: 24px;
  }

  .execution-copy h3 {
    margin-bottom: 22px;
    font-size: 27px;
    line-height: 1.34;
    letter-spacing: -0.06em;
  }

  .execution-copy ul {
    gap: 12px;
    margin-bottom: 24px;
  }

  .execution-copy li {
    padding-left: 34px;
    font-size: 15px;
  }

  .execution-copy li::before {
    width: 23px;
    height: 23px;
    font-size: 13px;
    line-height: 23px;
  }

  .execution-button {
    height: 58px;
    gap: 24px;
    font-size: 18px;
  }

  .execution-arrow {
    top: 198px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }

  .execution-prev {
    left: 8px;
  }

  .execution-next {
    right: 8px;
  }

  .campaign-section {
    padding: 58px 18px 76px;
  }

  .campaign-title-area {
    margin-bottom: 30px;
  }

  .campaign-title-area h2 {
    font-size: 32px;
  }

  .campaign-title-area p {
    font-size: 15px;
  }

  .campaign-slider-area {
    width: calc(100% + 36px);
    margin-left: -18px;
  }

  .campaign-card-list {
    gap: 14px;
    padding: 0 18px 30px;
    scroll-padding-inline: 18px;
  }

  .campaign-card {
    flex: 0 0 82%;
    max-width: 320px;
  }

  .campaign-image {
    aspect-ratio: 1 / 1.08;
  }

  .campaign-info {
    padding: 22px 20px 24px;
  }

  .campaign-info h3 {
    font-size: 21px;
  }

  .campaign-info p {
    font-size: 15px;
  }

  .reference-section {
    padding: 58px 18px 76px;
  }

  .reference-title-area {
    margin-bottom: 30px;
  }

  .reference-title-area h2 {
    font-size: 32px;
  }

  .reference-title-area p {
    font-size: 15px;
  }

  .reference-card {
    padding: 20px 20px 26px;
    border-radius: 22px;
  }

  .reference-image {
    border-radius: 18px;
  }

  .reference-icon {
    width: 62px;
    height: 62px;
    margin-top: -31px;
    margin-bottom: 24px;
    font-size: 29px;
  }

  .reference-content h3 {
    font-size: 24px;
  }

  .reference-content p {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .reference-button {
    height: 56px;
    font-size: 17px;
  }

  .brand-section {
    padding: 58px 18px 76px;
  }

  .brand-inner {
    padding: 0;
    border-radius: 0;
  }

  .brand-title-area {
    margin-bottom: 30px;
  }

  .brand-title-area h2 {
    font-size: 32px;
  }

  .brand-title-area p {
    font-size: 15px;
  }

  .brand-logo-grid {
    gap: 12px;
  }

  .brand-logo-card {
    height: 96px;
    border-radius: 16px;
  }
}


/* Footer Section */
.footer-section {
  padding: 86px 54px 72px;
  background:
    radial-gradient(circle at 18% 8%, rgba(238, 229, 255, 0.28) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 84% 10%, rgba(255, 229, 244, 0.26) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #fdfcff 48%, #ffffff 100%);
  overflow: visible;
}

.footer-inner {
  width: min(100%, 1784px);
  margin: 0 auto;
}

.footer-cta-form-box {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: 64px 70px 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(209, 196, 255, 0.42) 0%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 86% 16%, rgba(255, 214, 238, 0.46) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #f5f1ff 0%, #fff7fd 52%, #ffedf7 100%);
  border: 1px solid rgba(109, 66, 255, 0.08);
  box-shadow: 0 24px 74px rgba(80, 58, 140, 0.09);
}

.footer-cta-form-box::before,
.footer-cta-form-box::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.footer-cta-form-box::before {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -150px;
}

.footer-cta-form-box::after {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 46px;
}

.footer-cta-top,
.footer-db-form {
  position: relative;
  z-index: 1;
}

.footer-cta-top {
  display: block;
  margin-bottom: 42px;
  text-align: center;
}

.footer-cta-copy {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-cta-copy h2 {
  margin-bottom: 18px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(38px, 3.05vw, 62px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #080b29;
}

.footer-cta-copy h2 em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(90deg, #5c34ff 0%, #8a3ff2 48%, #df43cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta-copy p {
  color: #3f455f;
  font-size: clamp(17px, 1.12vw, 21px);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-cta-top-button {
  display: none;
}

.footer-db-form {
  position: relative;
  z-index: 3;
  overflow: visible;
  display: grid;
  gap: 26px;
  padding: 38px 40px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #6743e8 0%, #7547e6 54%, #8b57dc 100%);
  box-shadow: 0 18px 44px rgba(91, 52, 200, 0.18);
}

.footer-form-row {
  position: relative;
  z-index: 4;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(190px, 1fr) minmax(300px, 2.05fr);
  gap: 18px;
}

.footer-input {
  height: 72px;
  padding: 0 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(109, 66, 255, 0.05),
    0 10px 22px rgba(34, 18, 116, 0.07);
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-input span {
  flex-shrink: 0;
  color: #7c57ee;
  font-size: 21px;
  line-height: 1;
}

.footer-input input,
.footer-input select,
.footer-input textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #15182f;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-input input::placeholder,
.footer-input textarea::placeholder {
  color: #8f93a6;
}

.footer-input select {
  appearance: none;
  padding-right: 30px;
  color: #15182f;
  cursor: pointer;
}

.footer-select {
  position: relative;
}

.footer-select::after {
  content: "⌄";
  position: absolute;
  right: 22px;
  top: 50%;
  color: #8f93a6;
  font-size: 20px;
  font-weight: 800;
  transform: translateY(-50%);
  pointer-events: none;
}

.footer-textarea {
  align-items: flex-start;
  height: 72px;
  padding-top: 23px;
  padding-bottom: 16px;
}

.footer-input textarea {
  height: 34px;
  resize: none;
  line-height: 1.35;
}

.footer-form-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-form-agree-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-agree {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.04em;
  cursor: pointer;
}

.footer-agree input {
  display: none;
}

.footer-agree span {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.footer-agree input:checked + span {
  background: #ffffff;
  border-color: #ffffff;
}

.footer-agree input:checked + span::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #6d42ff;
  font-size: 15px;
  font-weight: 900;
  transform: translate(-50%, -52%);
}

.footer-agree-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 72px;
  min-width: 238px;
  padding: 0 34px 0 38px;
  border-radius: 14px;
  background: #080b29;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.045em;
  box-shadow: 0 18px 34px rgba(7, 9, 37, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-submit span {
  font-size: 28px;
  line-height: 1;
}

.footer-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(7, 9, 37, 0.3);
}

.footer-info-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 64px;
  align-items: center;
  margin-top: 58px;
  padding: 54px 70px 38px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 18, 41, 0.08);
  border-radius: 30px;
  box-shadow: 0 20px 54px rgba(16, 18, 41, 0.06);
}

.footer-company {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.footer-desc {
  margin-bottom: 24px;
  color: #20263f;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.footer-company-list {
  padding-top: 22px;
  border-top: 1px solid rgba(16, 18, 41, 0.1);
}

.footer-company-list p {
  color: #787e92;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.footer-company-list span {
  margin: 0 10px;
  color: #c4c7d2;
}

.footer-policy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
  color: #30364f;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.footer-policy a {
  color: #30364f;
}

.footer-contact {
  min-height: 210px;
  padding-left: 62px;
  border-left: 1px solid rgba(16, 18, 41, 0.12);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  align-items: start;
}

.footer-contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4efff 0%, #ebe4ff 100%);
  color: #7d57ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(109, 66, 255, 0.08);
}

.footer-contact span {
  display: block;
  margin-bottom: 8px;
  color: #4b5068;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.footer-contact strong {
  display: block;
  margin-bottom: 10px;
  color: #080b29;
  font-size: clamp(34px, 2.4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.footer-contact p {
  color: #4b5068;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.footer-sns {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.footer-sns a {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f4efff 0%, #ebe4ff 100%);
  color: #7d57ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(109, 66, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-sns a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(109, 66, 255, 0.14);
}

@media (max-width: 1440px) {
  .footer-section {
    padding: 78px 36px 64px;
  }

  .footer-cta-form-box {
    padding: 56px 52px 50px;
  }

  .footer-db-form {
    padding: 34px 34px 32px;
  }

  .footer-form-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-textarea {
    grid-column: 1 / -1;
  }

  .footer-info-wrap {
    padding: 48px 52px 36px;
    gap: 48px;
  }

  .footer-contact {
    padding-left: 48px;
  }
}

@media (max-width: 1200px) {
  .footer-cta-top {
    margin-bottom: 32px;
  }

  .footer-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-textarea {
    grid-column: 1 / -1;
  }

  .footer-info-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contact {
    min-height: auto;
    padding-left: 0;
    padding-top: 38px;
    border-left: 0;
    border-top: 1px solid rgba(16, 18, 41, 0.12);
  }
}

@media (max-width: 960px) {
  .footer-section {
    padding: 64px 24px 54px;
  }

  .footer-cta-form-box {
    padding: 42px 32px 36px;
    border-radius: 28px;
  }

  .footer-cta-copy h2 {
    font-size: 36px;
  }

  .footer-cta-copy p {
    font-size: 17px;
  }

  .footer-db-form {
    padding: 28px 24px 26px;
    border-radius: 24px;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-form-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-form-agree-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-submit {
    width: 100%;
    min-width: 0;
  }

  .footer-info-wrap {
    margin-top: 38px;
    padding: 38px 32px 30px;
    border-radius: 26px;
  }

  .footer-contact {
    grid-template-columns: 64px 1fr;
    gap: 20px;
  }

  .footer-contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    font-size: 30px;
  }

  .footer-contact strong {
    font-size: 36px;
  }

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

@media (max-width: 640px) {
  .footer-section {
    padding: 54px 18px 46px;
  }

  .footer-cta-form-box {
    padding: 34px 20px 24px;
    border-radius: 24px;
  }

  .footer-cta-form-box::before {
    width: 210px;
    height: 210px;
    left: -96px;
    bottom: -108px;
  }

  .footer-cta-form-box::after {
    width: 240px;
    height: 240px;
    right: -110px;
    top: 20px;
  }

  .footer-cta-top {
    margin-bottom: 26px;
  }

  .footer-cta-copy h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.28;
  }

  .footer-cta-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-db-form {
    gap: 20px;
    padding: 22px 16px 20px;
    border-radius: 20px;
  }

  .footer-input {
    height: 60px;
    padding: 0 18px;
    border-radius: 12px;
    gap: 12px;
  }

  .footer-input span {
    font-size: 18px;
  }

  .footer-input input,
  .footer-input select,
  .footer-input textarea {
    font-size: 16px;
  }

  .footer-textarea {
    height: 88px;
    padding-top: 19px;
  }

  .footer-input textarea {
    height: 50px;
  }

  .footer-agree {
    font-size: 14px;
  }

  .footer-agree-link {
    font-size: 14px;
  }

  .footer-submit {
    height: 62px;
    border-radius: 14px;
    font-size: 18px;
  }

  .footer-info-wrap {
    margin-top: 28px;
    padding: 30px 22px 26px;
    border-radius: 22px;
  }

  .footer-logo img {
    height: 34px;
  }

  .footer-desc {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .footer-company-list {
    padding-top: 18px;
  }

  .footer-company-list p {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-company-list span {
    display: none;
  }

  .footer-policy {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    font-size: 13px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 30px;
  }

  .footer-contact-icon {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .footer-contact span {
    font-size: 14px;
  }

  .footer-contact strong {
    font-size: 31px;
  }

  .footer-contact p {
    font-size: 14px;
  }

  .footer-sns {
    gap: 12px;
    margin-top: 8px;
  }

  .footer-sns a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 22px;
  }
}

/* Web only - Hero slide 03 line break fix */
@media (min-width: 961px) {
  .hero-title-qoo10 {
    font-size: clamp(48px, 4.15vw, 76px);
    line-height: 1.18;
    letter-spacing: -0.06em;
  }

  .hero-title-qoo10 .web-nowrap {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .hero-title-qoo10 .web-nowrap {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .execution-slide.active {
    animation: none;
    transition: none;
  }
}

/* Custom Footer Dropdown - v3 */
.footer-custom-select {
  position: relative;
  z-index: 20;
  overflow: visible;
  padding: 0;
}

.footer-custom-select > span:first-child {
  margin-left: 22px;
}

.footer-select-trigger {
  flex: 1;
  height: 100%;
  min-width: 0;
  padding: 0 52px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #15182f;
  text-align: left;
}

.footer-select-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #8f93a6;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.footer-custom-select.is-selected .footer-select-label {
  color: #15182f;
}

.footer-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  color: #8f93a6;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

.footer-custom-select.active {
  z-index: 90;
  border-color: rgba(109, 66, 255, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(109, 66, 255, 0.14),
    0 16px 34px rgba(34, 18, 116, 0.14);
}

.footer-custom-select.active .footer-select-arrow {
  color: #6d42ff;
  transform: translateY(-50%) rotate(180deg);
}

.footer-select-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 40;
  max-height: min(258px, 42vh);
  overscroll-behavior: contain;
  padding: 8px;
  display: grid;
  gap: 4px;
  overflow-y: auto;
  list-style: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(109, 66, 255, 0.16);
  box-shadow: 0 22px 54px rgba(20, 13, 70, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.footer-custom-select.active .footer-select-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-select-list li {
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  color: #30364f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.04em;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.footer-select-list li:hover,
.footer-select-list li.active,
.footer-select-list li.selected {
  background: #f1edff;
  color: #6d42ff;
}

@media (max-width: 640px) {
  .footer-custom-select > span:first-child {
    margin-left: 18px;
  }

  .footer-select-label {
    font-size: 16px;
  }

  .footer-select-list {
    max-height: min(236px, 38vh);
    border-radius: 16px;
  }

  .footer-select-list li {
    min-height: 44px;
    font-size: 15px;
  }
}


/* Footer Overflow Fix */
.footer-section,
.footer-cta-form-box,
.footer-db-form,
.footer-form-row {
  overflow: visible;
}

.footer-cta-form-box {
  isolation: isolate;
}

.footer-db-form {
  position: relative;
  z-index: 3;
}

.footer-form-row {
  position: relative;
  z-index: 4;
}

/* Footer Dropdown Arrow Fix - Stable */
.footer-custom-select {
  position: relative;
  z-index: 20;
  overflow: visible;
}

.footer-custom-select.active,
.footer-custom-select.is-open {
  z-index: 90;
  transform: none;
}

.footer-custom-select .footer-select-trigger {
  position: relative;
  padding-right: 50px;
}

.footer-custom-select .footer-select-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px;
  overflow: hidden;
  pointer-events: none;
  border: solid #7c57ee;
  border-width: 0 2px 2px 0;
  border-radius: 1px;
  transform: translateY(-58%) rotate(45deg);
  transform-origin: 50% 50%;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.footer-custom-select .footer-select-arrow::before,
.footer-custom-select .footer-select-arrow::after {
  content: none !important;
}

.footer-custom-select.active .footer-select-arrow,
.footer-custom-select.is-open .footer-select-arrow {
  border-color: #6d42ff;
  transform: translateY(-42%) rotate(-135deg);
}

.footer-select-trigger:focus {
  outline: none;
}

/* Footer Dropdown Scrollbar Hide + Radius Fix */
.footer-custom-select .footer-select-list {
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 120;
  max-height: 258px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  border-radius: 18px;
  padding: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.footer-custom-select .footer-select-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.footer-custom-select .footer-select-list li {
  margin-right: 0;
  border-radius: 12px;
}

.footer-custom-select .footer-select-list li:hover,
.footer-custom-select .footer-select-list li.active,
.footer-custom-select .footer-select-list li.selected {
  background: #f1edff;
  color: #6d42ff;
}

/* Mobile Footer Contact Layout Fix */
@media (max-width: 640px) {
  .footer-contact {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px 18px;
    align-items: start;
  }

  .footer-contact-icon {
    grid-column: 1;
    grid-row: 1;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .footer-contact > div:not(.footer-contact-icon):not(.footer-sns) {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .footer-contact span {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .footer-contact strong {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.1;
  }

  .footer-contact p {
    font-size: 13px;
  }

  .footer-sns {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-sns a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .footer-sns a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
  }

  .footer-custom-select .footer-select-trigger {
    padding-right: 44px;
  }

  .footer-custom-select .footer-select-arrow {
    right: 20px;
    width: 8px;
    height: 8px;
    border-width: 0 2px 2px 0;
  }

  .footer-custom-select .footer-select-list {
    max-height: 236px;
    border-radius: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .footer-custom-select .footer-select-list::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .footer-custom-select .footer-select-list li {
    border-radius: 11px;
  }
}

/* Footer Company Info Pipe / Mobile Line Fix */
.footer-company-list p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer-company-list p span {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.footer-company-list p span + span::before {
  content: "|";
  margin: 0 12px;
  color: #b7bccb;
}

.footer-company-list p,
.footer-company-list p span {
  color: #4b5068;
  font-weight: 600;
}

@media (max-width: 640px) {
  .footer-company-list {
    display: grid;
    gap: 6px;
  }

  .footer-company-list p {
    display: grid;
    gap: 6px;
    margin: 0;
  }

  .footer-company-list p span {
    display: block;
    color: #3f455f;
    font-weight: 600;
  }

  .footer-company-list p span + span::before {
    content: none;
  }
}

/* Global Horizontal Scroll Fix */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

.site-header,
main,
section,
footer {
  max-width: 100%;
}

@media (max-width: 960px) {
  .hero-section,
  .growth-section,
  .package-section,
  .execution-section,
  .campaign-section,
  .reference-section,
  .footer-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .execution-inner,
  .execution-stage,
  .execution-slide,
  .execution-copy,
  .execution-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .execution-stage {
    overflow: hidden;
  }

  .execution-slide.active {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .execution-copy {
    justify-self: stretch;
  }

  .execution-tabs {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .execution-tabs::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .execution-arrow {
    max-width: calc(100vw - 36px);
  }

  .execution-prev {
    left: 12px;
  }

  .execution-next {
    right: 12px;
  }
}

@media (max-width: 640px) {
  .execution-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .execution-title-area h2,
  .execution-copy h3 {
    max-width: 100%;
    overflow-wrap: keep-all;
  }

  .execution-tabs {
    margin-left: 0;
    margin-right: 0;
  }

  .execution-tab {
    flex: 0 0 auto;
  }

  .execution-visual {
    min-height: 280px;
  }
}

/* Hero Keyword 2x2 Layout Fix */
@media (min-width: 961px) and (max-width: 1860px) {
  .hero-slide:nth-child(1) .hero-keywords {
    display: grid;
    grid-template-columns: repeat(2, minmax(210px, max-content));
    align-items: center;
    justify-content: flex-start;
    gap: 20px 46px;
    margin-top: 60px;
  }

  .hero-slide:nth-child(1) .hero-keywords div {
    width: 100%;
    min-width: 210px;
    padding-right: 0;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-slide:nth-child(1) .hero-keywords div:not(:last-child)::after {
    display: none;
  }

  .hero-slide:nth-child(1) .hero-keywords div:nth-child(odd)::after {
    content: "";
    position: absolute;
    display: block;
    right: -23px;
    top: 50%;
    width: 1px;
    height: 30px;
    background: rgba(16, 18, 41, 0.12);
    transform: translateY(-50%);
  }
}

@media (max-width: 960px) {
  .hero-slide:nth-child(1) .hero-keywords {
    display: flex;
  }
}

/* Hero Slide 03/04 Web Line Break Fix */
@media (min-width: 961px) {
  .hero-slide:nth-child(3) .hero-content h1,
  .hero-slide:nth-child(4) .hero-content h1 {
    white-space: nowrap;
  }
}

/* Hero Slide 02 Keyword Fix Only */
@media (min-width: 961px) {
  .hero-slide:nth-child(2) .hero-keywords {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: flex-start;
    gap: 18px 22px;
    width: max-content;
    max-width: none;
  }

  .hero-slide:nth-child(2) .hero-keywords div {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding-right: 22px;
    white-space: nowrap;
  }

  .hero-slide:nth-child(2) .hero-keywords div:not(:last-child)::after {
    display: block;
    right: 0;
  }

  .hero-slide:nth-child(2) .hero-keywords div:last-child {
    padding-right: 0;
  }

  .hero-slide:nth-child(2) .hero-keywords div:last-child::after {
    display: none;
  }
}

/* Header Fixed Restore */
:root {
  --site-header-height: 112px;
}

body {
  padding-top: var(--site-header-height);
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  width: 100%;
}

@media (max-width: 1440px) {
  :root {
    --site-header-height: 96px;
  }
}

@media (max-width: 960px) {
  :root {
    --site-header-height: 82px;
  }
}

@media (max-width: 640px) {
  :root {
    --site-header-height: 74px;
  }
}

/* Mobile Execution Main Title Unified Fix */
@media (max-width: 640px) {
  .execution-slide .execution-copy h3 {
    font-size: 27px;
    line-height: 1.32;
    letter-spacing: -0.065em;
  }

  .execution-slide:nth-child(1) .execution-copy h3 br:first-of-type,
  .execution-slide:nth-child(2) .execution-copy h3 br:first-of-type,
  .execution-slide:nth-child(4) .execution-copy h3 br:first-of-type {
    display: none;
  }

  .execution-slide .execution-copy h3 em {
    white-space: nowrap;
  }
}

/* Growth Auto Image Rotator */
.growth-main-card {
  overflow: hidden;
}

.growth-rotator-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eff8ff 0%, #f8f4ff 52%, #ffeaf0 100%);
}

.growth-rotator-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.55s ease,
    transform 0.75s ease;
}

.growth-rotator-visual img.active {
  opacity: 1;
  transform: scale(1);
}

.growth-info-card {
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.growth-info-card.active {
  border-color: rgba(109, 66, 255, 0.32);
  background:
    radial-gradient(circle at 88% 12%, rgba(109, 66, 255, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 74px rgba(89, 76, 160, 0.18);
  transform: translateY(-4px);
}

.growth-info-card.active::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 70%, #ff4c88 100%);
}

.growth-info-card.active h3,
.growth-info-card.active strong {
  color: #6d42ff;
}

@media (max-width: 960px) {
  .growth-info-card.active {
    transform: none;
  }
}

/* Mobile Hero Slide 01 Keywords 2x2 */
@media (max-width: 640px) {
  .hero-slide:nth-child(1) .hero-keywords {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    width: 100%;
    max-width: 360px;
    margin-top: 28px;
  }

  .hero-slide:nth-child(1) .hero-keywords div {
    width: 100%;
    min-width: 0;
    padding-right: 0;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .hero-slide:nth-child(1) .hero-keywords div::after,
  .hero-slide:nth-child(1) .hero-keywords div:not(:last-child)::after,
  .hero-slide:nth-child(1) .hero-keywords div:nth-child(odd)::after {
    display: none !important;
    content: none !important;
  }
}

/* Mobile Execution Slider Arrow Hide Only */
@media (max-width: 640px) {
  .package-section .package-arrow,
  .package-section .package-prev,
  .package-section .package-next {
    display: flex !important;
  }

  .execution-section .execution-arrow,
  .execution-section .execution-prev,
  .execution-section .execution-next {
    display: none !important;
  }

  .execution-section .execution-stage,
  .execution-section .execution-slide {
    cursor: grab;
  }

  .execution-section .execution-stage.dragging {
    cursor: grabbing;
  }
}

/* Growth Card Smooth Active Motion */
.growth-info-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.48s ease,
    box-shadow 0.48s ease,
    background 0.48s ease;
}

.growth-info-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #6e45ff 0%, #df43cf 70%, #ff4c88 100%);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left center;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.growth-info-card h3,
.growth-info-card strong,
.growth-info-card p,
.growth-info-card .growth-icon {
  transition:
    color 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
}

.growth-info-card.active {
  border-color: rgba(109, 66, 255, 0.32);
  background:
    radial-gradient(circle at 88% 12%, rgba(109, 66, 255, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 74px rgba(89, 76, 160, 0.18);
  transform: translateY(-3px);
}

.growth-info-card.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.growth-info-card.active h3,
.growth-info-card.active strong {
  color: #6d42ff;
}

.growth-info-card.active .growth-icon {
  transform: scale(1.04);
}

@media (max-width: 960px) {
  .growth-info-card.active {
    transform: none;
  }

  .growth-info-card::after {
    transition:
      opacity 0.5s ease,
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

/* Execution Slide Soft Content Fade */
.execution-slide.active .execution-copy,
.execution-slide.active .execution-visual {
  animation: executionSoftFade 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.execution-slide.active .execution-visual {
  animation-delay: 0.06s;
}

@keyframes executionSoftFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.execution-tab {
  transition:
    background 0.38s ease,
    color 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    transform 0.38s ease;
}

/* Footer DB Form Bottom Fix */
.footer-db-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 14px;
}

.footer-db-form .footer-form-row {
  flex: 1 1 100%;
  width: 100%;
}

.footer-form-bottom {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  margin-top: 4px;
}

.footer-form-agree-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: inherit;
  white-space: nowrap;
}

.footer-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: #ffffff;
}

.footer-agree-link {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.footer-submit-button {
  flex: 0 0 auto;
  min-width: 190px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 14px;
  background: #050724;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(5, 7, 36, 0.24);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.footer-submit-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.footer-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(5, 7, 36, 0.28);
}

.footer-submit-button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 960px) {
  .footer-form-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .footer-form-agree-wrap {
    justify-content: flex-start;
  }

  .footer-submit-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .footer-form-agree-wrap {
    font-size: 13px;
    gap: 8px 10px;
  }

  .footer-privacy {
    white-space: normal;
  }

  .footer-agree-link {
    font-size: 13px;
  }

  .footer-submit-button {
    height: 56px;
    border-radius: 14px;
    font-size: 16px;
  }
}

/* Hero JS Fade Safety */
.hero-slide {
  will-change: opacity;
}

.hero-slider.dragging .hero-slide {
  transition: none !important;
}

/* Privacy Modal */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.privacy-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 36, 0.46);
  backdrop-filter: blur(8px);
}

.privacy-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 56px);
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(20, 16, 60, 0.28);
  transform: translateY(18px) scale(0.98);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.34s ease;
}

.privacy-modal.active .privacy-modal-panel {
  transform: translateY(0) scale(1);
}

.privacy-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 36px 22px;
  border-bottom: 1px solid rgba(88, 72, 138, 0.12);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 72, 146, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(245, 239, 255, 0.94) 0%, rgba(255, 246, 250, 0.94) 100%);
}

.privacy-modal-title {
  margin: 0;
  color: #111530;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.055em;
}

.privacy-modal-desc {
  margin: 10px 0 0;
  color: #626a84;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

.privacy-modal-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #35205f;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(96, 67, 166, 0.12);
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.privacy-modal-close:hover {
  background: #ffffff;
  color: #6d42ff;
  transform: rotate(90deg);
}

.privacy-modal-body {
  max-height: calc(100vh - 260px);
  overflow-y: auto;
  padding: 28px 36px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 66, 255, 0.34) rgba(109, 66, 255, 0.08);
}

.privacy-modal-body::-webkit-scrollbar {
  width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
  background: rgba(109, 66, 255, 0.08);
  border-radius: 999px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
  background: rgba(109, 66, 255, 0.34);
  border-radius: 999px;
}

.privacy-policy-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-policy-item {
  padding: 18px 20px;
  border: 1px solid rgba(112, 91, 170, 0.13);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fbf9ff 100%);
}

.privacy-policy-item strong {
  display: block;
  margin-bottom: 8px;
  color: #6d42ff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.privacy-policy-item p {
  margin: 0;
  color: #32384f;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.68;
  letter-spacing: -0.04em;
}

.privacy-policy-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(109, 66, 255, 0.08);
  color: #4a5168;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
  letter-spacing: -0.035em;
}

.privacy-modal-foot {
  display: flex;
  justify-content: flex-end;
  padding: 22px 36px 34px;
}

.privacy-modal-confirm {
  min-width: 132px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6d42ff 0%, #df43cf 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.035em;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(109, 66, 255, 0.26);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.privacy-modal-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(109, 66, 255, 0.32);
}

body.privacy-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .privacy-modal {
    align-items: flex-end;
    padding: 16px;
  }

  .privacy-modal-panel {
    width: 100%;
    max-height: calc(100vh - 32px);
    border-radius: 26px;
  }

  .privacy-modal-head {
    padding: 28px 24px 20px;
  }

  .privacy-modal-title {
    font-size: 22px;
  }

  .privacy-modal-desc {
    font-size: 14px;
  }

  .privacy-modal-close {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .privacy-modal-body {
    max-height: calc(100vh - 270px);
    padding: 22px 24px 6px;
  }

  .privacy-policy-item {
    padding: 16px;
    border-radius: 18px;
  }

  .privacy-policy-item p {
    font-size: 14px;
  }

  .privacy-policy-note {
    font-size: 13px;
  }

  .privacy-modal-foot {
    padding: 20px 24px 28px;
  }

  .privacy-modal-confirm {
    width: 100%;
    height: 52px;
  }
}

/* Mobile Final Requested Fixes Only */
/* 1) 모바일 헤더가 콘텐츠를 덮지 않도록 여백 복구 */
@media (max-width: 960px) {
  :root {
    --site-header-height: 82px;
  }

  body {
    padding-top: var(--site-header-height) !important;
    overflow-x: hidden !important;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 500 !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  :root {
    --site-header-height: 92px;
  }

  body {
    padding-top: var(--site-header-height) !important;
  }

  .hero-section {
    margin-top: 0 !important;
  }
}

/* 2) 모바일 실행 서비스 메인 타이틀 3줄 복구 */
@media (max-width: 960px) {
  .execution-slide .execution-copy h3 {
    font-size: 27px !important;
    line-height: 1.32 !important;
    letter-spacing: -0.065em !important;
  }

  .execution-slide:nth-child(1) .execution-copy h3 br:first-of-type,
  .execution-slide:nth-child(2) .execution-copy h3 br:first-of-type,
  .execution-slide:nth-child(4) .execution-copy h3 br:first-of-type {
    display: none !important;
  }

  .execution-slide .execution-copy h3 em {
    white-space: nowrap !important;
  }
}

/* 3) 모바일 캠페인 섹션 가로 스크롤바/양끝 화살표 숨김 */
@media (max-width: 960px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .campaign-section,
  .campaign-inner,
  .campaign-slider-area {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .campaign-card-list {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .campaign-card-list::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }
}

/* 4) 모바일 레퍼런스 타이틀: 쉼표 뒤 두 번째 줄로 이동 */
@media (max-width: 960px) {
  .reference-title-area h2 em {
    display: block !important;
  }
}

/* 5) 모바일 푸터 카테고리 폰트 크기/두께 input과 동일하게 복구 */
@media (max-width: 960px) {
  .footer-custom-select,
  .footer-select-trigger,
  .footer-select-label {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
  }

  .footer-select-trigger {
    text-align: left !important;
  }
}

/* 6) 웹에서만 메인 슬라이드 이미지가 전체 배경처럼 들어가게 처리 */
@media (min-width: 961px) {
  .hero-slide {
    position: relative !important;
    overflow: hidden !important;
  }

  .hero-slide .hero-content {
    position: relative !important;
    z-index: 3 !important;
  }

  .hero-slide .hero-image-area {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    overflow: hidden !important;
  }

  .hero-slide .hero-image-area img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: right center !important;
    filter: none !important;
  }

  .hero-slide .hero-image-area::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(246, 239, 255, 0.94) 0%,
      rgba(246, 239, 255, 0.78) 36%,
      rgba(255, 244, 249, 0.12) 64%,
      rgba(255, 238, 244, 0) 100%
    );
  }
}

/* Fix Only - 960 Header And Hero Keywords */
/* 960px 이하에서 헤더 높이만큼 본문이 정확히 내려가도록 보정 */
@media (max-width: 960px) {
  :root {
    --site-header-height: 136px;
  }

  body {
    padding-top: var(--site-header-height) !important;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 500 !important;
  }

  .hero-section {
    margin-top: 0 !important;
  }
}

/* 640px 이하 실제 모바일에서도 헤더가 슬라이드를 덮지 않게 유지 */
@media (max-width: 640px) {
  :root {
    --site-header-height: 128px;
  }

  body {
    padding-top: var(--site-header-height) !important;
  }
}

/* 960px 이하에서 히어로 키워드 겹침 방지 */
@media (max-width: 960px) {
  .hero-slide .hero-keywords {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 520px) !important;
    max-width: 100% !important;
    gap: 18px 28px !important;
    align-items: center !important;
  }

  .hero-slide .hero-keywords div {
    width: 100% !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding-right: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }

  .hero-slide .hero-keywords div::after,
  .hero-slide .hero-keywords div:not(:last-child)::after,
  .hero-slide .hero-keywords div:nth-child(odd)::after {
    display: none !important;
    content: none !important;
  }

  .hero-slide .hero-keywords .keyword-icon,
  .hero-slide .hero-keywords .keyword-emoji {
    flex: 0 0 auto !important;
  }
}

@media (max-width: 420px) {
  .hero-slide .hero-keywords {
    gap: 16px 18px !important;
  }

  .hero-slide .hero-keywords div {
    gap: 8px !important;
    font-size: 14px !important;
  }
}

/* Fix Only - Hero Content Visibility And 3 Keyword Mobile Stack */
/* 웹 버전에서 2,3,4번 슬라이드 텍스트가 이미지/오버레이 뒤로 숨지 않도록 보정 */
@media (min-width: 961px) {
  .hero-slide.active .hero-content {
    position: relative !important;
    z-index: 5 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .hero-slide.active .hero-image-area {
    z-index: 1 !important;
  }

  .hero-slide.active .hero-image-area::after {
    z-index: 2 !important;
  }
}

/* 모바일에서 키워드가 3개인 슬라이드(2,3,4)는 수직 3개 정렬 */
@media (max-width: 960px) {
  .hero-slide:nth-child(2) .hero-keywords,
  .hero-slide:nth-child(3) .hero-keywords,
  .hero-slide:nth-child(4) .hero-keywords {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: auto !important;
    max-width: 100% !important;
    gap: 18px !important;
  }

  .hero-slide:nth-child(2) .hero-keywords div,
  .hero-slide:nth-child(3) .hero-keywords div,
  .hero-slide:nth-child(4) .hero-keywords div {
    width: auto !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding-right: 0 !important;
    white-space: nowrap !important;
  }

  .hero-slide:nth-child(2) .hero-keywords div::after,
  .hero-slide:nth-child(3) .hero-keywords div::after,
  .hero-slide:nth-child(4) .hero-keywords div::after {
    display: none !important;
    content: none !important;
  }
}

/* Fix Only - Web Hero Active Slide Visibility */
/* 웹에서 2~4번 슬라이드가 빈 화면처럼 보이는 문제만 보정 */
@media (min-width: 961px) {
  .hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
  }

  .hero-slide.active .hero-content {
    position: relative !important;
    z-index: 10 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .hero-slide.active .hero-content *,
  .hero-slide.active .hero-keywords,
  .hero-slide.active .hero-keywords *,
  .hero-slide.active .hero-button,
  .hero-slide.active .hero-badge {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hero-slide.active .hero-image-area {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
  }

  .hero-slide.active .hero-image-area img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-slide.active .hero-image-area::after {
    z-index: 2 !important;
  }
}

/* Final Fix - Web Hero Slide Position Restore */
/* 웹 슬라이드는 반드시 absolute로 겹쳐 있어야 JS fade가 정상 작동함 */
@media (min-width: 961px) {
  .hero-slider {
    position: relative !important;
  }

  .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: 1.05fr 0.95fr !important;
    align-items: center !important;
    gap: 40px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2 !important;
  }

  .hero-slide .hero-content {
    position: relative !important;
    z-index: 5 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .hero-slide.active .hero-content,
  .hero-slide.active .hero-content *,
  .hero-slide.active .hero-keywords,
  .hero-slide.active .hero-keywords *,
  .hero-slide.active .hero-button,
  .hero-slide.active .hero-badge {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hero-slide .hero-image-area {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .hero-slide .hero-image-area img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: right center !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
  }

  .hero-slide .hero-image-area::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(246, 239, 255, 0.94) 0%,
      rgba(246, 239, 255, 0.78) 36%,
      rgba(255, 244, 249, 0.12) 64%,
      rgba(255, 238, 244, 0) 100%
    );
  }
}


/* 모바일 레퍼런스 타이틀: '일본 확장 강점,' / '실행 레퍼런스로 더 강하게' 2줄 고정 */
@media (max-width: 640px) {
  .reference-title-area h2 em {
    display: inline !important;
  }

  .reference-title-area h2 em::before {
    content: "";
    display: block;
  }
}

/* 모바일 푸터 회사 정보: 구분선(|) 숨기고 항목별 줄바꿈 */
@media (max-width: 640px) {
  .footer-company-info,
  .footer-info,
  .footer-business-info,
  .footer-meta,
  .footer-company-detail {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  .footer-company-info span,
  .footer-info span,
  .footer-business-info span,
  .footer-meta span,
  .footer-company-detail span {
    display: block !important;
  }

  .footer-company-info .divider,
  .footer-info .divider,
  .footer-business-info .divider,
  .footer-meta .divider,
  .footer-company-detail .divider,
  .footer-company-info .bar,
  .footer-info .bar,
  .footer-business-info .bar,
  .footer-meta .bar,
  .footer-company-detail .bar {
    display: none !important;
  }

  .footer-company-info span::before,
  .footer-info span::before,
  .footer-business-info span::before,
  .footer-meta span::before,
  .footer-company-detail span::before,
  .footer-company-info span::after,
  .footer-info span::after,
  .footer-business-info span::after,
  .footer-meta span::after,
  .footer-company-detail span::after {
    content: none !important;
    display: none !important;
  }
}


/* 모바일 레퍼런스 타이틀: '일본 확장 강점,' / '실행 레퍼런스로 더 강하게' 정확히 2줄 */
@media (max-width: 960px) {
  .reference-title-area h2 {
    font-size: 0 !important;
    line-height: 1.18 !important;
  }

  .reference-title-area h2::before {
    content: "일본 확장 강점,";
    display: block;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #080b29;
    -webkit-text-fill-color: #080b29;
    background: none;
  }

  .reference-title-area h2 em {
    display: inline !important;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.06em;
    white-space: nowrap;
  }

  .reference-title-area h2 em::before {
    content: "";
    display: block;
  }

  .reference-title-area h2::after {
    content: "로 더 강하게";
    display: inline;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #080b29;
    -webkit-text-fill-color: #080b29;
    background: none;
    white-space: nowrap;
  }
}

/* 모바일 푸터 회사 정보: 실제 클래스 기준으로 | 제거 + 항목별 줄바꿈 */
@media (max-width: 960px) {
  .footer-company-list {
    display: block !important;
  }

  .footer-company-list p {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin: 0 0 6px !important;
  }

  .footer-company-list p:last-child {
    margin-bottom: 0 !important;
  }

  .footer-company-list p span {
    display: block !important;
    margin: 0 !important;
  }

  .footer-company-list p span + span::before {
    content: none !important;
    display: none !important;
    margin: 0 !important;
  }
}

/* Final Fix - Mobile Reference Title Two Lines */
/* 모바일 레퍼런스 타이틀: 빈 줄 없이 정확히 2줄 */
@media (max-width: 960px) {
  .reference-title-area h2 {
    font-size: 0 !important;
    line-height: 0 !important;
    letter-spacing: 0 !important;
  }

  .reference-title-area h2::before {
    content: "일본 확장 강점,";
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(30px, 7vw, 40px) !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    letter-spacing: -0.06em !important;
    color: #080b29 !important;
    -webkit-text-fill-color: #080b29 !important;
    background: none !important;
  }

  .reference-title-area h2 em {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(30px, 7vw, 40px) !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    letter-spacing: -0.06em !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
  }

  .reference-title-area h2 em::before {
    content: none !important;
    display: none !important;
  }

  .reference-title-area h2::after {
    content: "로 더 강하게";
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Paperlogy", "Pretendard", sans-serif;
    font-size: clamp(30px, 7vw, 40px) !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    letter-spacing: -0.06em !important;
    color: #080b29 !important;
    -webkit-text-fill-color: #080b29 !important;
    background: none !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
  }
}

/* 모바일 푸터 회사 정보: 실제 클래스 기준으로 | 제거 + 항목별 줄바꿈 */
@media (max-width: 960px) {
  .footer-company-list {
    display: block !important;
  }

  .footer-company-list p {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin: 0 0 6px !important;
  }

  .footer-company-list p:last-child {
    margin-bottom: 0 !important;
  }

  .footer-company-list p span {
    display: block !important;
    margin: 0 !important;
  }

  .footer-company-list p span + span::before {
    content: none !important;
    display: none !important;
    margin: 0 !important;
  }
}

/* Brand Logo Grid Align Fix */
.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding: 28px 36px;
  overflow: hidden;
}

.brand-logo-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 640px) {
  .brand-logo-card {
    height: 118px;
    padding: 22px 24px;
  }

  .brand-logo-card img {
    max-width: 82%;
    max-height: 54px;
  }
}

/* Brand Logo 05 Size Adjust */
.brand-logo-card:nth-child(5) img {
  max-width: 64%;
  max-height: 58px;
}

/* Brand Logo 06 Size Adjust */
.brand-logo-card:nth-child(6) img {
  max-width: 88%;
  max-height: 82px;
}

/* Reference Logo Background Lighten */
.reference-image {
  aspect-ratio: 1.9 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(247, 240, 255, 0.35) 0%,
    rgba(255, 246, 250, 0.35) 100%
  );
}

.reference-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
}

.reference-card:nth-child(3) .reference-image img {
  max-width: 88%;
  max-height: 88px;
}


/* @cosme / QVC 모달 이미지 2개만 공통으로 박스 꽉 차게 정리 */
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image,
.reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1.85 / 1 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #fff !important;
}

/* @cosme / QVC 모달의 메인 이미지만 꽉 차게 */
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img:not(.reference-soldout-badge),
.reference-modal-content[data-reference-content="qvc"] .reference-modal-image > img:not(.reference-soldout-badge) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 14px !important;
}

/* QVC 완판 앰블럼 */
.reference-modal-image-qvc .reference-soldout-badge {
  position: absolute !important;
  right: 18px !important;
  bottom: 18px !important;
  width: 92px !important;
  max-width: 92px !important;
  height: auto !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

/* 모바일에서도 @cosme / QVC 모달 이미지가 박스에 꽉 차도록 */
@media (max-width: 640px) {
  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image,
  .reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
    aspect-ratio: 1.75 / 1 !important;
  }

  .reference-modal-image-qvc .reference-soldout-badge {
    right: 12px !important;
    bottom: 12px !important;
    width: 64px !important;
    max-width: 64px !important;
  }
}


/* 웹/모바일 공통: fixed 헤더보다 모달이 위로 올라오게 */
.reference-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
}

/* 모달 패널은 화면 안에서만 스크롤 */
.reference-modal-panel {
  max-height: calc(100vh - 48px) !important;
  overflow-y: auto !important;
}

/* @cosme 모달: 이미지가 잘리지 않도록 원본 비율 유지 */
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  overflow: visible !important;
  border-radius: 14px !important;
  background: #fff !important;
}

.reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 14px !important;
}

/* QVC 모달: 박스를 채우되 앰블럼은 별도 크기로 고정 */
.reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1.85 / 1 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #fff !important;
}

.reference-modal-content[data-reference-content="qvc"] .reference-modal-image > img:not(.reference-soldout-badge) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 14px !important;
}

/* QVC 완판 앰블럼 */
.reference-modal-image-qvc .reference-soldout-badge {
  position: absolute !important;
  right: 18px !important;
  bottom: 18px !important;
  width: 92px !important;
  max-width: 92px !important;
  height: auto !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

/* 모바일 */
@media (max-width: 640px) {
  .reference-modal-panel {
    max-height: calc(100vh - 28px) !important;
  }

  .reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
    aspect-ratio: 1.75 / 1 !important;
  }

  .reference-modal-image-qvc .reference-soldout-badge {
    right: 12px !important;
    bottom: 12px !important;
    width: 64px !important;
    max-width: 64px !important;
  }
}


/* @cosme 모달만 이미지 박스 높이를 고정해서 모달 내부 스크롤을 줄임 */
@media (min-width: 641px) {
  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image {
    width: 100% !important;
    height: 340px !important;
    max-height: 340px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #fff !important;
  }

  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img:not(.reference-soldout-badge) {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 640px) {
  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image {
    width: 100% !important;
    height: 220px !important;
    max-height: 220px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #fff !important;
  }

  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img:not(.reference-soldout-badge) {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 14px !important;
  }
}


/* 모달이 fixed 헤더보다 위에 보이도록 */
.reference-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
}

.reference-modal-panel {
  max-height: calc(100vh - 48px) !important;
  overflow-y: auto !important;
}

/* @cosme 모달: 이미지 크기 축소 + 안 잘림 + 라운딩 강제 */
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image {
  position: relative !important;
  width: 100% !important;
  height: 340px !important;
  max-height: 340px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: #fff !important;
  isolation: isolate !important;
  transform: translateZ(0) !important;
  clip-path: inset(0 round 20px) !important;
  -webkit-clip-path: inset(0 round 20px) !important;
  box-shadow: 0 0 0 1px rgba(8, 11, 41, 0.06) !important;
}

.reference-modal-content[data-reference-content="cosme"] .reference-modal-image img,
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img,
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img:not(.reference-soldout-badge) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 20px !important;
  transform: translateZ(0) !important;
  clip-path: inset(0 round 20px) !important;
  -webkit-clip-path: inset(0 round 20px) !important;
}

/* QVC 모달: 박스 채움 + 앰블럼 유지 */
.reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1.85 / 1 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #fff !important;
}

.reference-modal-content[data-reference-content="qvc"] .reference-modal-image > img:not(.reference-soldout-badge) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 14px !important;
}

.reference-modal-image-qvc .reference-soldout-badge {
  position: absolute !important;
  right: 18px !important;
  bottom: 18px !important;
  width: 92px !important;
  max-width: 92px !important;
  height: auto !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

/* 모바일 */
@media (max-width: 640px) {
  .reference-modal-panel {
    max-height: calc(100vh - 28px) !important;
  }

  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image {
    height: 220px !important;
    max-height: 220px !important;
    border-radius: 18px !important;
    clip-path: inset(0 round 18px) !important;
    -webkit-clip-path: inset(0 round 18px) !important;
  }

  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image img,
  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img,
  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img:not(.reference-soldout-badge) {
    border-radius: 18px !important;
    clip-path: inset(0 round 18px) !important;
    -webkit-clip-path: inset(0 round 18px) !important;
  }

  .reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
    aspect-ratio: 1.75 / 1 !important;
  }

  .reference-modal-image-qvc .reference-soldout-badge {
    right: 12px !important;
    bottom: 12px !important;
    width: 64px !important;
    max-width: 64px !important;
  }
}

/* Reference Modal Real Final Fix */
/* 모달이 fixed 헤더보다 위에 뜨도록 유지 */
.reference-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
}

.reference-modal-panel {
  max-height: calc(100vh - 48px) !important;
  overflow-y: auto !important;
}

/* @cosme 모달: 박스를 이미지 크기에 맞추고, 실제 이미지에 라운딩 적용 */
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img,
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img:not(.reference-soldout-badge) {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 300px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  clip-path: inset(0 round 18px) !important;
  -webkit-clip-path: inset(0 round 18px) !important;
}

/* QVC 모달: 박스는 채우고, 완판 앰블럼은 오른쪽 아래 고정 */
.reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1.85 / 1 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #fff !important;
}

.reference-modal-content[data-reference-content="qvc"] .reference-modal-image > img:not(.reference-soldout-badge) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 14px !important;
}

.reference-modal-image-qvc .reference-soldout-badge {
  position: absolute !important;
  right: 18px !important;
  bottom: 18px !important;
  width: 92px !important;
  max-width: 92px !important;
  height: auto !important;
  z-index: 10 !important;
  pointer-events: none !important;
}

/* 모바일 */
@media (max-width: 640px) {
  .reference-modal-panel {
    max-height: calc(100vh - 28px) !important;
  }

  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img,
  .reference-modal-content[data-reference-content="cosme"] .reference-modal-image > img:not(.reference-soldout-badge) {
    max-height: 210px !important;
    border-radius: 14px !important;
    clip-path: inset(0 round 14px) !important;
    -webkit-clip-path: inset(0 round 14px) !important;
  }

  .reference-modal-content[data-reference-content="qvc"] .reference-modal-image {
    aspect-ratio: 1.75 / 1 !important;
  }

  .reference-modal-image-qvc .reference-soldout-badge {
    right: 12px !important;
    bottom: 12px !important;
    width: 64px !important;
    max-width: 64px !important;
  }
}

/* Service Growth Layout Align Final Fix */
/* 웹: 왼쪽 이미지 박스와 오른쪽 키워드 박스 영역 높이/상하 라인 맞춤 */
@media (min-width: 961px) {
  .growth-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
    gap: 34px !important;
    align-items: stretch !important;
  }

  .growth-main-card {
    min-height: 0 !important;
    height: auto !important;
    border-radius: 34px !important;
    overflow: hidden !important;
  }

  .growth-visual-placeholder.growth-rotator-visual {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 34px !important;
    background: transparent !important;
  }

  .growth-visual-placeholder.growth-rotator-visual img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  .growth-side-cards {
    height: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch !important;
  }

  .growth-info-card {
    min-height: 0 !important;
    height: 100% !important;
    padding: 34px !important;
  }
}

/* 모바일: 이미지 박스와 키워드 박스 사이 여백 축소 */
@media (max-width: 960px) {
  .growth-grid {
    gap: 14px !important;
  }

  .growth-main-card {
    min-height: 0 !important;
    height: auto !important;
  }

  .growth-visual-placeholder.growth-rotator-visual {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    background: transparent !important;
  }

  .growth-visual-placeholder.growth-rotator-visual img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
    border-radius: 0 !important;
  }

  .growth-side-cards {
    gap: 14px !important;
  }
}

@media (max-width: 640px) {
  .growth-grid {
    gap: 12px !important;
  }

  .growth-visual-placeholder.growth-rotator-visual {
    border-radius: 22px !important;
  }

  .growth-side-cards {
    gap: 12px !important;
  }
}

/* Campaign Image Fit Fix */
.campaign-image {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
}

.campaign-image img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Campaign Image Mobile Taller Fix */
@media (max-width: 640px) {
  .campaign-image {
    aspect-ratio: 1 / 1.22 !important;
  }
}

/* Footer DB Category Font Match */
.footer-custom-select,
.footer-select-trigger,
.footer-select-label {
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  color: #8f95a6 !important;
}

.footer-select-label.selected,
.footer-custom-select.is-selected .footer-select-label {
  color: #080b29 !important;
}

/* Footer SNS Icon Size Adjust */
.footer-sns a img,
.footer-sns-link img {
  display: block !important;
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
}

/* Footer DB Category Web Font Exact Match */
@media (min-width: 641px) {
  .footer-db-form .footer-input input,
  .footer-db-form .footer-select-trigger,
  .footer-db-form .footer-select-label {
    font-family: inherit !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.04em !important;
  }

  .footer-db-form .footer-select-label {
    color: #8f95a6 !important;
  }

  .footer-db-form .footer-select-label.selected,
  .footer-db-form .footer-custom-select.is-selected .footer-select-label {
    color: #080b29 !important;
  }
}

/* Brand Logo Grid 3x2 Fix */
@media (min-width: 961px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1120px !important;
    gap: 28px !important;
  }
}

/* Reference First Card Image Fill Fix */
.reference-card:first-child .reference-image {
  display: block !important;
  background: #fff !important;
}

.reference-card:first-child .reference-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}


/* @cosme Modal Image Bottom Gap Fix */
.reference-modal-content[data-reference-content="cosme"] .reference-modal-image {
  margin-bottom: 34px !important;
}