.service-page {
  --service-content: 1600px;
  --service-section-y: 170px;
  --service-split-gap: clamp(44px, 5vw, 88px);
  --service-radius: 14px;
  min-height: 100vh;
  overflow-x: clip;
  background: #fff;
}

.service-page #site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.service-main { position: relative; z-index: 1; }
.service-main .section-inner { width: min(100%, var(--service-content)); margin: 0 auto; }

.service-hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  margin-top: -70px;
  overflow: hidden;
  background: #151515;
}
.service-hero__image,
.service-hero__video,
.service-visual__image { width: 100%; height: 100%; object-fit: cover; }
.service-hero__image { position: absolute; inset: 0; }
.service-hero__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.service-hero__video.is-ready { opacity: 1; }
.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.12) 32%, rgba(0,0,0,.25) 62%, rgba(0,0,0,.78) 100%);
}
.service-hero__content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(58px, 9vh, 110px);
  color: #fff;
}
.service-eyebrow {
  display: block;
  font-family: Outfit, Pretendard, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  color: #d64048;
}
.service-hero .service-eyebrow { color: rgba(255,255,255,.72); }
.service-hero h1 {
  margin: 14px 0 0;
  font-family: Outfit, Pretendard, sans-serif;
  font-size: clamp(46px, 4vw, 64px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.service-hero p { margin: 18px 0 0; max-width: 540px; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.82); }
.service-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.service-button--light { background: #fff; color: #111; }
.service-button--glass { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(8px); }
.service-button:hover { transform: translateY(-2px); }
#top a.service-button--light:hover { background: #d64048 !important; color: #fff !important; border-color: #d64048 !important; box-shadow: 0 10px 24px rgba(214,64,72,.28) !important; }
.service-button--glass:hover { background: rgba(255,255,255,.22); color: #fff; }

.service-index {
  position: fixed;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 54;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 var(--pad-x);
  visibility: hidden;
  transition: visibility 0s linear .45s;
  pointer-events: none;
}
.service-index__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 560px);
  padding: 5px;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  will-change: opacity, transform;
  transition: opacity .38s ease, transform .45s cubic-bezier(.22,.6,.2,1);
  pointer-events: none;
}
.service-index.is-visible { visibility: visible; transition-delay: 0s; }
.service-index.is-visible .service-index__inner { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.service-index__link {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  color: #777;
  font-size: 12.5px;
  transition: background-color .3s ease, color .3s ease, transform .3s ease;
}
.service-index__link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d64048;
  opacity: 0;
  transform: translate(-50%, 4px) scale(.5);
  transition: opacity .3s ease, transform .3s cubic-bezier(.22,.6,.2,1);
}
.service-index__number { font-family: Outfit, sans-serif; font-size: 11px; letter-spacing: .04em; opacity: .62; }
.service-index__link strong { overflow: hidden; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.service-index__link.is-active { background: #111; color: #fff; }
.service-index__link.is-active::after { opacity: 1; transform: translate(-50%, 0) scale(1); }
.service-index__link:active { transform: scale(.98); }

.service-title {
  margin: 0;
  font-family: Outfit, Pretendard, sans-serif;
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.035em;
  color: #111;
  text-wrap: balance;
}
.service-copy { margin: 18px 0 0; font-size: 15px; line-height: 1.75; color: #666; }
.service-mobile-break { display: none; }

.service-detail { padding: calc(var(--service-section-y) * .62) var(--pad-x) 0; scroll-margin-top: 150px; }
.service-detail-carousel,
.service-detail-carousel__viewport,
.service-detail-carousel__track { display: contents; }
.service-detail__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--service-split-gap); align-items: center; }
.service-detail__text { min-width: 0; }
.service-detail__text .service-title { margin-top: 0; }
.service-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 22px; }
.service-tag {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 14px 15px;
  border-radius: 14px;
  background: #f7f7f8;
  color: #111;
  transition: background-color .25s ease;
}
.service-tag__image { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 11px; object-fit: cover; }
.service-tag__body { min-width: 0; }
.service-tag__body strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.35; letter-spacing: -.01em; }
.service-tag__body span { display: block; margin-top: 3px; color: #999; font-size: 12px; line-height: 1.4; }
@media (hover: hover) and (pointer: fine) {
  .service-tag:hover { background: #f1f1f3; }
}
.service-checks { display: grid; gap: 12px; margin-top: 22px; }
.service-check { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: #333; }
.service-check::before { content: "✓"; flex: 0 0 auto; color: #d64048; font-weight: 600; }

.service-visual { position: relative; aspect-ratio: 1088 / 1125; overflow: hidden; border-radius: var(--service-radius); background: #1a1a1a; }
.service-visual__image { position: absolute; inset: 0; }
.service-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.14) 45%, rgba(0,0,0,.82)); opacity: 1; pointer-events: none; transition: opacity .55s cubic-bezier(.22,.6,.2,1); }
.service-visual__stat { position: absolute; z-index: 1; left: 36px; bottom: 34px; color: #fff; }
.service-visual__number { font-family: Outfit, sans-serif; font-size: clamp(64px, 6vw, 92px); font-weight: 400; line-height: .92; letter-spacing: -.035em; }
.service-visual__number.service-count-pending { opacity: 0; transform: translateY(10px); }
.service-visual__number.service-count-running,
.service-visual__number.service-count-complete { opacity: 1; transform: translateY(0); transition: opacity .34s ease, transform .46s cubic-bezier(.22,.6,.2,1); }
.service-visual__number small { font-size: .5em; }
.service-visual__label { margin-top: 14px; font-size: clamp(18px, 1.5vw, 24px); font-weight: 600; line-height: 1.3; letter-spacing: -.02em; color: rgba(255,255,255,.9); }

.channel-stack { display: grid; gap: 0; margin-top: 24px; }
.channel-card { display: flex; align-items: center; gap: 15px; padding: 18px 20px; border: 1px solid #ededed; border-radius: 16px; background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.06); }
.channel-logo { flex: 0 0 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; font-family: Outfit, sans-serif; font-size: 21px; font-weight: 600; }
.channel-logo--naver { background: #03c75a; color: #fff; box-shadow: 0 6px 16px rgba(3,199,90,.3); }
.channel-logo--google { border: 1px solid #ececec; color: #4285f4; box-shadow: 0 6px 16px rgba(66,133,244,.16); }
.channel-card__heading { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.channel-card h3 { margin: 0; font-size: 15.5px; font-weight: 600; letter-spacing: -.02em; }
.channel-badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 10px; border-radius: 999px; font-family: Outfit, Pretendard, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .01em; }
.channel-badge--naver { background: rgba(3,199,90,.1); color: #03a94d; }
.channel-badge--google { background: rgba(66,133,244,.1); color: #3367d6; }
.channel-card p { margin: 5px 0 0; font-size: 13px; line-height: 1.5; color: #666; }
.channel-card p strong { color: #111; font-weight: 600; }
.channel-link { position: relative; z-index: 1; display: grid; place-items: center; width: 46px; height: 46px; margin: -6px auto; border-radius: 50%; background: #fff; color: #d64048; box-shadow: 0 6px 18px rgba(0,0,0,.12), 0 0 22px rgba(214,64,72,.08); }
.channel-link::before,
.channel-link::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.channel-link::before { inset: -7px; border: 2px solid rgba(214,64,72,.42); opacity: 0; transform: scale(.72); }
.channel-link::after { inset: -28px; background: radial-gradient(circle, rgba(214,64,72,.15) 0%, rgba(214,64,72,.06) 42%, transparent 72%); opacity: .35; transform: scale(.7); }
.channel-link svg { width: 21px; height: 21px; transform-origin: 50% 50%; }

@media (prefers-reduced-motion: no-preference) {
  .channel-link svg { animation: channel-link-spin 3.2s linear infinite; }
  .channel-link::before { animation: channel-link-ring 2.2s cubic-bezier(.22,.6,.2,1) infinite; }
  .channel-link::after { animation: channel-link-glow 2.2s ease-in-out infinite; }
}

@keyframes channel-link-ring {
  0% { opacity: 0; transform: scale(.72); }
  18% { opacity: .52; }
  72%, 100% { opacity: 0; transform: scale(1.42); }
}
@keyframes channel-link-glow {
  0%, 100% { opacity: .22; transform: scale(.72); }
  48% { opacity: .72; transform: scale(1.08); }
}
@keyframes channel-link-spin {
  to { transform: rotate(360deg); }
}

.service-included { padding: calc(var(--service-section-y) * .72) var(--pad-x) 0; }
.service-included__head { max-width: 760px; margin: 0 auto; text-align: center; }
.included-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 48px; }
.included-card { position: relative; display: flex; min-height: 300px; flex-direction: column; justify-content: space-between; padding: 26px; border: 1px solid #e5e5e7; border-radius: 14px; background: #fff; transition: background-color .25s ease, border-color .25s ease; }
.included-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(from var(--gang), transparent 0deg, transparent 230deg, #9a9a9a 300deg, #111 340deg, transparent 360deg);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.included-card:hover { border-color: #d7d7da; background: #fff; }
.included-card__thumb { width: 56px; height: 56px; overflow: hidden; border-radius: 14px; background: #eaeaea; box-shadow: 0 6px 16px rgba(0,0,0,.1); }
.included-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.included-card__body { margin-top: 28px; }
.included-card h3 { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.included-card p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.65; color: #777; }
.included-card a { display: inline-flex; align-items: center; min-height: 40px; margin-top: 20px; padding: 0 18px; border: 0; border-radius: 10px; background: #f0f0f1; color: #333; font-size: 13.5px; font-weight: 600; }
.included-card--image { position: relative; justify-content: flex-end; overflow: hidden; border: 0; color: #fff; background: #222; }
.included-card__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.included-card__thumb--mobile { display: none; }
.included-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.35) 45%, rgba(0,0,0,.9)); opacity: 1; pointer-events: none; transition: opacity .55s cubic-bezier(.22,.6,.2,1); }
.included-card__icon { position: absolute; z-index: 1; top: 26px; left: 26px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 14px; background: #fff; color: #171717; box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.included-card__icon svg { width: 27px; height: 27px; }
.included-card--image .included-card__body { position: relative; z-index: 1; }
.included-card--image p { color: rgba(255,255,255,.82); }
.included-card--image a { background: #fff; color: #111; }

@media (hover: hover) and (pointer: fine) {
  .service-visual:hover::after,
  .included-card--image:hover::after { opacity: 0; }
  .included-card:hover::before { opacity: 1; animation: glow-spin 2.2s linear infinite; }
}

.service-faq { padding: var(--service-section-y) var(--pad-x) 0; }
.service-faq__layout { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: clamp(56px, 8vw, 140px); align-items: start; }
.service-faq__head { position: sticky; top: 120px; }
.service-faq__head .service-copy { max-width: 330px; }
.service-faq__list { border-top: 1px solid #dcdcdc; }
.service-faq__item { border-bottom: 1px solid #dcdcdc; }
.service-faq__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 20px 2px;
  color: #171717;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.02em;
  cursor: pointer;
  list-style: none;
}
.service-faq__item summary::-webkit-details-marker { display: none; }
.service-faq__item summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #171717;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform .28s ease, color .28s ease;
}
.service-faq__item[open] summary::after { content: "−"; }
.service-faq__item summary:hover::after { color: #d64048; }
.service-faq__answer { padding: 0 60px 26px 2px; }
.service-faq__answer p { max-width: 720px; margin: 0; color: #686868; font-size: 14.5px; line-height: 1.75; }

.service-contact { padding: calc(var(--service-section-y) * .72) var(--pad-x) var(--service-section-y); }
.service-contact__box { position: relative; overflow: hidden; padding: 110px 40px; border-radius: 26px; background: #0d0d0d; color: #fff; text-align: center; }
.service-contact__box::before { content: ""; position: absolute; inset: -30%; background: radial-gradient(circle at 50% 50%, #3a3a3a, #232323 30%, #0d0d0d 62%); animation: service-cta-orb 11s ease-in-out infinite; }
.service-contact__content { position: relative; }
.service-contact .service-title { color: #fff; }
.service-contact .service-copy { color: #c4c4c4; }
.service-contact__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 26px; font-size: 13px; color: #aaa; }
.service-contact__meta span:not(.service-contact__divider)::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #d64048; vertical-align: 1px; }
@keyframes service-cta-orb { 0%,100% { transform: translate(-12%,-10%) scale(1); } 50% { transform: translate(12%,10%) scale(1.25); } }

@media (max-width: 768px) {
  .service-body { padding-bottom: 62px; }
  .service-page { --service-section-y: 76px; --service-split-gap: 24px; --service-radius: 12px; padding-bottom: 0; }
  .service-page #site-header.is-over-hero .ui-010 { color: #fff; }
  .service-page #site-header.is-over-hero #search-open:hover { color: #fff !important; }
  .service-hero { height: 64vh; min-height: 520px; margin-top: -56px; }
  .service-hero__content { padding: 0 20px 46px; }
  .service-hero h1 { font-size: 26px; line-height: 1.3; }
  .service-hero p { font-size: 13.5px; }
  .service-hero__actions { margin-top: 22px; }
  .service-button { min-height: 42px; padding: 0 18px; font-size: 13px; }
  .service-hero .service-button--light { min-height: 36px; padding: 0 14px; font-size: 12px; }
  .service-button--glass { display: none; }
  .service-index { display: none; }
  .service-title { font-size: 20px; line-height: 1.3; }
  .service-copy { font-size: 13px; line-height: 1.7; }
  .service-mobile-break { display: block; }
  .service-detail-carousel .service-detail__grid {
    grid-template-columns: 1fr;
  }
  .service-detail--reverse .service-detail__text { order: 1; }
  .service-visual { aspect-ratio: 4 / 3; }
  .service-visual__stat { left: 20px; bottom: 18px; }
  .service-visual__number { font-size: 34px; }
  .service-visual__label { margin-top: 8px; font-size: 13.5px; font-weight: 400; letter-spacing: 0; }
  .service-detail__text .service-copy br { display: none; }
  .service-detail__text .service-copy br.service-mobile-break { display: block; }
  .service-tags { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .service-tag { min-height: 48px; justify-content: center; padding: 12px 8px; border-radius: 12px; text-align: center; }
  .service-tag__image,
  .service-tag__body span { display: none; }
  .service-tag__body strong { font-size: 13px; line-height: 1.3; white-space: nowrap; }
  .service-eyebrow { font-size: 10.5px; }
  .service-check { font-size: 13px; }
  .channel-card h3 { font-size: 13.5px; line-height: 1.35; }
  .channel-badge { min-height: 20px; padding: 0 7px; font-size: 9.5px; }
  .channel-card p { margin-top: 4px; font-size: 11.5px; line-height: 1.45; }
  .service-included__head { text-align: left; }
  .included-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
  .included-card {
    position: relative;
    min-height: 92px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e5e5e7;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
  }
  .included-card:hover { background: #fff; }
  .included-card__thumb {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 11px;
    box-shadow: none;
  }
  .included-card__body { min-width: 0; margin: 0; padding-right: 82px; }
  .included-card h3 { font-size: 14.5px; line-height: 1.35; text-align: left; }
  .included-card p {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: #777;
    font-size: 11.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .included-card a {
    position: absolute;
    top: 50%;
    right: 14px;
    display: inline-flex;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid #dedee1;
    border-radius: 999px;
    background: #f0f0f1;
    color: #333;
    font-size: 10.5px;
    white-space: nowrap;
    transform: translateY(-50%);
  }
  .included-card--image {
    justify-content: normal;
    border: 1px solid #e5e5e7;
    color: #111;
    background: #fff;
  }
  .included-card--image a { background: #f0f0f1; }
  .included-card__backdrop { display: none; }
  .included-card__thumb--mobile {
    display: block;
  }
  .included-card--image::after { display: none; }
  .included-card--image .included-card__icon {
    display: none;
  }
  .included-card--image .included-card__body {
    position: static;
    z-index: auto;
    padding-right: 82px;
  }
  .included-card--image h3 { color: #111; font-size: 14.5px; }
  .included-card--image p {
    display: -webkit-box;
    color: #777;
    font-size: 11.5px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .included-card--image a {
    top: 50%;
    right: 14px;
    bottom: auto;
    left: auto;
    min-height: 30px;
    border: 1px solid #dedee1;
    color: #333;
    transform: translateY(-50%);
  }
  .service-faq__layout { grid-template-columns: 1fr; gap: 28px; }
  .service-faq__head { position: static; text-align: center; }
  .service-faq__head .service-copy { margin-right: auto; margin-left: auto; }
  .service-faq__item summary { min-height: 68px; gap: 16px; padding: 16px 0; font-size: 14px; }
  .service-faq__item summary::after { width: 30px; height: 30px; font-size: 21px; }
  .service-faq__answer { padding: 0 42px 20px 0; }
  .service-faq__answer p { font-size: 12.5px; line-height: 1.7; }
  .service-contact__box { padding: 58px 22px; border-radius: 18px; }
  .service-contact__meta { gap: 8px 14px; font-size: 11px; }
  .service-contact__divider { display: none; }
  .service-page .site-footer { padding-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .service-contact__box::before { animation: none; }
  .service-visual__number { transition: none !important; }
}
