/* ═══════════════════════════════════════
       DA 다폰 — 통합 스타일 (모바일 최적화 완성)
    ═══════════════════════════════════════ */
:root {
  --gold: #f0c000;
  --gold-dark: #c9a000;
  --black: #000000;
  --black2: #0a0a0a;
  --black3: #111111;
  --black4: #1a1a1a;
  --white: #ffffff;
  --gray1: #eeeeee;
  --gray2: #aaaaaa;
  --gray3: #666666;
  --font-ko: 'Noto Sans KR', sans-serif;
  --font-en: 'Bebas Neue', sans-serif;

  --notice-h: 38px;
  --nav-h-only: 64px;
  --nav-h: calc(var(--notice-h) + var(--nav-h-only));
  --bottom-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-ko);
  background: var(--black);
  color: var(--gray1);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--bottom-h);
}

/* 공지바 */
.notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
  height: var(--notice-h);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.notice-bar em {
  font-style: normal;
  text-decoration: underline;
  font-weight: 900;
}

/* NAV */
.nav {
  position: fixed;
  top: var(--notice-h);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9%;
  height: var(--nav-h-only);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  height: 32px;
}
.nav__brand {
  font-size: 0.85rem;
  color: var(--white);
  margin-left: 10px;
}
.nav__cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  padding: 8px 18px;
  text-decoration: none;
  font-size: 0.85rem;
}

/* 서비스 탭 네비 */
.service-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--black3);
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.service-nav::-webkit-scrollbar {
  display: none;
}
.service-nav__item {
  padding: 18px 24px;
  color: var(--gray3);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.service-nav__item.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* HERO */
.hero {
  padding: calc(var(--nav-h) + 60px) 9% 80px;
  background: radial-gradient(circle at 10% 20%, #1a1a1a 0%, #000 100%);
  position: relative;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}
.hero__title em {
  color: var(--gold);
  font-style: normal;
}
.hero__sub {
  color: var(--gray2);
  margin-top: 20px;
  font-size: 1.1rem;
}

/* 섹션 공통 */
.service-section {
  padding: 0 9%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.service-section:nth-child(even) {
  background: #0a0a0a;
}
.service-section:nth-child(odd) {
  background: #000;
}
.section-tag {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  font-weight: 700;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 50px;
  line-height: 1.3;
  font-weight: 900;
}
.section-title em {
  color: var(--gold);
  font-style: normal;
}

/* 혜택 카드 (기존 미사용) */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.benefit-card {
  background: #111;
  padding: 32px;
  border: 1px solid #222;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.benefit-card:hover {
  border-color: rgba(240, 192, 0, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(240, 192, 0, 0.15);
}
.benefit-card::before {
  content: '✓';
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--gold);
  opacity: 0.15;
  font-size: 2rem;
  font-weight: 900;
}
.benefit-card::after {
  content: '자세히 보기';
  display: block;
  font-size: 0.72rem;
  color: #f0c000;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.benefit-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.92rem;
  color: var(--gray2);
  line-height: 1.6;
}

/* 섹션 CTA */
.section-cta {
  margin-top: 40px;
  text-align: center;
}
.section-cta a {
  display: inline-block;
  background: #000;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 900;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.section-cta a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(240, 192, 0, 0.3);
}

/* 다픽 브릿지 배너 */
.dapick-bridges {
  background: linear-gradient(135deg, #0f0826 0%, #1a0f3a 50%, #0a1628 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid rgba(240, 192, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 9%;
  position: relative;
  overflow: hidden;
}
.dapick-bridges__left {
  max-width: 600px;
}
.dapick-bridges__tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.dapick-bridges__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}
.dapick-bridges__title em {
  color: var(--gold);
  font-style: normal;
}
.dapick-bridges__sub {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--gray2);
  line-height: 1.6;
}
.dapick-bridges__btn {
  flex-shrink: 0;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  text-decoration: none;
  padding: 20px 36px;
  font-size: 1rem;
  border-radius: 6px;
  transition: 0.25s ease;
}
.dapick-bridges__btn:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* 하단 고정 버튼 */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-h);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.bottom-nav__btn {
  background: #000;
  color: var(--gold);
  padding: 12px 40px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 4px;
}

/* FOOTER */
.footer-extended {
  background: #000000;
  border-top: 3px solid var(--gold);
}
.footer-extended__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 9%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  gap: 40px;
}
.footer-extended__legal-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 2;
}
.footer-extended__legal-info strong {
  color: rgba(255, 255, 255, 0.55);
}
.footer-extended__legal-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}
.footer-meta p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 2;
}
.footer-meta strong {
  color: rgba(255, 255, 255, 0.6);
}
.footer-logos__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cert-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: none;
  transition: opacity 0.2s ease;
}
.cert-logo:hover {
  opacity: 1;
}
.cert-logo--round {
  height: 56px;
}
.cert-logo-main-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.cert-logo-main-link:hover {
  transform: scale(1.05);
  opacity: 1;
}
.cert-logo--main {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
}
.cert-logo-main-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}
.footer-logos__sub {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 플로팅 SNS */
.floating-box {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  padding: 12px 16px;
  width: 52px;
  overflow: hidden;
  transition:
    width 0.3s ease,
    background 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.floating-btn:hover {
  width: 160px;
  border-color: var(--gold);
}
.floating-btn__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.floating-btn__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}
.floating-btn:hover .floating-btn__label {
  opacity: 1;
}
.floating-btn--kakao:hover {
  background: #fee500;
  color: #000;
  border-color: #fee500;
}
.floating-btn--kakao:hover .floating-btn__label {
  color: #000;
}
.floating-btn--insta:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-color: #dc2743;
  color: #fff;
}
.floating-btn--naver:hover {
  background: #03c75a;
  border-color: #03c75a;
  color: #fff;
}

/* 다이얼로그 */
.dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.dialog-overlay.open {
  display: flex;
}
.dialog-box {
  background: #111111;
  border: 1px solid rgba(240, 192, 0, 0.4);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  padding: 32px 28px 28px;
  position: relative;
  animation: dialogIn 0.25s ease;
}
@keyframes dialogIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.dialog-close:hover {
  color: #fff;
}
.dialog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f0c000;
  border: 1px solid rgba(240, 192, 0, 0.3);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.dialog-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
  white-space: pre-line;
}
.dialog-amount-box {
  background: rgba(240, 192, 0, 0.07);
  border: 1.5px solid rgba(240, 192, 0, 0.5);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  text-align: center;
}
.dialog-amount-label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.dialog-amount-value {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 900;
  color: #f0c000;
  letter-spacing: 1px;
  line-height: 1;
}
.dialog-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.dialog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.dialog-item:hover {
  border-left-color: #f0c000;
}
.dialog-item__label {
  color: #aaa;
  font-size: 0.88rem;
}
.dialog-item__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dialog-item__badge {
  background: #f0c000;
  color: #000;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
}
.dialog-item__value {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
.dialog-note {
  font-size: 0.75rem;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
}
.dialog-cta {
  border-top: 1px solid #222;
  padding-top: 20px;
}
.dialog-cta__sub {
  font-size: 0.78rem;
  color: #666;
  text-align: center;
  margin-bottom: 12px;
}
.dialog-cta__btn {
  display: block;
  width: 100%;
  background: #f0c000;
  color: #000;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.dialog-cta__btn:hover {
  background: #c9a000;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   SERVICE 레이아웃 — 코웨이 스타일 3열
═══════════════════════════════════════ */
.svc-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 480px;
  background: rgba(255, 255, 255, 0.03);
  gap: 1px;
}
.svc-layout.has-thumbs {
  grid-template-columns: 220px 1fr 280px;
}

/* 사이드바 */
.svc-sidebar {
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}
.svc-sidebar__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.svc-sidebar__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
}
.svc-sidebar__more {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  margin-top: 3px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.svc-sidebar__more:hover {
  opacity: 0.7;
}
.svc-sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-sidebar__item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--gray2);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: color 0.2s;
  user-select: none;
}
.svc-sidebar__item:last-child {
  border-bottom: none;
}
.svc-sidebar__item:hover {
  color: var(--white);
}
.svc-sidebar__item.is-active {
  color: var(--white);
  font-weight: 700;
}
.svc-sidebar__item.is-active .svc-sidebar__line {
  display: block;
}
.svc-sidebar__line {
  display: none;
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-top: 2px;
}
.svc-sidebar__best {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.svc-sidebar__sub {
  font-size: 0.75rem;
  color: var(--gray3);
}

/* 메인 비주얼 */
.svc-main {
  background: var(--black2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.svc-main__inner {
  position: relative;
  flex: 1;
  min-height: 480px;
  border-top: 3px solid var(--gold);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(160deg, #1a1200 0%, #0a0a0a 60%, #000 100%);
}
.svc-main__inner.has-img {
  background: #000;
}

.svc-main__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease;
  animation: svcImgFade 0.4s ease;
}
@keyframes svcImgFade {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 워터마크 */
.svc-main__inner::before {
  content: attr(data-stat);
  position: absolute;
  right: -10px;
  top: 20px;
  font-family: var(--font-en);
  font-size: clamp(3rem, 7vw, 6rem);
  color: rgba(240, 192, 0, 0.05);
  letter-spacing: 4px;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* hover 오버레이 */
.svc-main__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px 40px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 55%,
    transparent 100%
  );
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  z-index: 2;
}
.svc-main__inner:hover .svc-main__content {
  transform: translateY(0);
  opacity: 1;
}

.svc-main__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 12px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.svc-main__stat {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.svc-main__title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 12px;
  white-space: pre-line;
  word-break: keep-all;
}
.svc-main__desc {
  font-size: 0.875rem;
  color: var(--gray2);
  line-height: 1.75;
  margin-bottom: 28px;
  word-break: keep-all;
}
.svc-main__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 0.88rem;
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 1px;
  transition:
    background 0.2s,
    transform 0.2s;
  align-self: flex-start;
}
.svc-main__cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   썸네일 (우측)
═══════════════════════════════════════ */
.svc-thumbs {
  background: var(--black2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  max-height: 600px;
}
.svc-thumbs:empty {
  display: none;
}

.svc-thumb {
  position: relative;
  background: var(--black3);
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;

  opacity: 0;
  transform: translateY(24px);
  animation: thumbFadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--thumb-i, 0) * 0.12s + 0.1s);
}

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

.svc-thumb:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(240, 192, 0, 0.18);
}
.svc-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(240, 192, 0, 0.22);
}

.svc-thumb__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}
.svc-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.svc-thumb:hover .svc-thumb__img {
  transform: scale(1.05);
}

.svc-thumb__label {
  padding: 12px 14px;
  background: var(--black2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.svc-thumb__name {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
}
.svc-thumb__price {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

/* ══════════════════════════════
   반응형 — 태블릿
══════════════════════════════ */
@media (max-width: 900px) {
  section {
    padding: 72px 7%;
  }
  .nav {
    padding: 0 7%;
  }
  .nav__logo-img {
    height: 30px;
  }
  .nav__cta {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  .nav__menu {
    display: none !important;
  }
  .nav__slogan {
    display: none;
  }
  .hero {
    padding: 100px 7% 60px;
  }
  .service-section {
    padding: 0 7%;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .benefit-card {
    padding: 26px;
  }
  .dapick-bridges {
    padding: 60px 7%;
    gap: 30px;
  }
  .dapick-bridges__title {
    font-size: 2rem;
  }
  .dapick-bridges__btn {
    padding: 16px 28px;
    font-size: 0.95rem;
  }
  .floating-box {
    right: 16px;
  }
  .footer-extended__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 7%;
  }
  .footer-extended__legal-logos {
    width: 100%;
    justify-content: center;
  }

  .svc-layout {
    grid-template-columns: 180px 1fr;
  }
  .svc-layout.has-thumbs {
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto auto;
  }
  .svc-layout.has-thumbs .svc-thumbs {
    grid-column: 1 / -1;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    padding: 16px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .svc-layout.has-thumbs .svc-thumb {
    flex: 0 0 220px;
  }
  .svc-main__inner {
    min-height: 320px;
  }
  .svc-sidebar {
    padding: 24px 20px;
  }
}

/* ══════════════════════════════
   반응형 — 모바일
══════════════════════════════ */
@media (max-width: 640px) {
  section {
    padding: 60px 5%;
  }

  .notice-bar {
    font-size: 0.72rem;
    padding: 7px 10px;
    gap: 5px;
    line-height: 1.35;
    height: auto;
    min-height: 32px;
  }
  .nav {
    top: 32px;
    height: 52px;
    padding: 0 5%;
  }
  .nav__brand {
    display: none;
  }
  .nav__logo-img {
    height: 26px;
  }
  .nav__cta {
    font-size: 0.75rem;
    padding: 7px 13px;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .service-nav {
    top: 84px;
    justify-content: flex-start;
  }
  .service-nav__item {
    padding: 11px 13px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .hero {
    padding: calc(32px + 52px + 36px + 28px) 5% 48px;
    min-height: auto;
  }
  .hero__title {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    line-height: 1.25;
  }
  .hero__sub {
    font-size: 0.92rem;
    margin-top: 12px;
  }
  .service-section {
    padding: 0 5%;
  }
  .section-tag {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }
  .section-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    margin-bottom: 22px;
    line-height: 1.35;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 18px;
  }
  .benefit-card {
    padding: 18px 16px;
    border-radius: 8px;
  }
  .benefit-card strong {
    font-size: 0.98rem;
    margin-bottom: 5px;
  }
  .benefit-card p {
    font-size: 0.84rem;
    line-height: 1.55;
  }
  .section-cta a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  .dapick-bridges {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 40px 5%;
    gap: 18px;
  }
  .dapick-bridges__left {
    max-width: 100%;
  }
  .dapick-bridges__title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .dapick-bridges__sub {
    font-size: 0.86rem;
    margin-top: 8px;
  }
  .dapick-bridges__btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 0.93rem;
    margin-top: 14px;
  }

  :root {
    --bottom-h: 58px;
  }
  .bottom-nav {
    height: var(--bottom-h);
  }
  .bottom-nav__btn {
    padding: 10px 28px;
    font-size: 0.92rem;
    width: 88%;
    text-align: center;
  }
  body {
    padding-bottom: var(--bottom-h);
  }

  .floating-box {
    display: none;
  }
  .footer-extended__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 5%;
  }
  .footer-extended__legal-logos {
    width: 100%;
    justify-content: center;
  }
  .cert-logo--main {
    height: 58px;
  }
  .footer-meta p,
  .footer-copy {
    font-size: 0.72rem;
  }

  .dialog-box {
    padding: 20px 15px 18px;
    border-radius: 10px;
  }
  .dialog-title {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  .dialog-amount-value {
    font-size: 1.75rem;
  }
  .dialog-item {
    padding: 9px 13px;
  }
  .dialog-item__label,
  .dialog-item__value {
    font-size: 0.82rem;
  }
  .dialog-cta__btn {
    padding: 13px;
    font-size: 0.93rem;
  }

  .svc-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .svc-layout.has-thumbs {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .svc-layout.has-thumbs .svc-thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding: 14px 12px;
  }
  .svc-layout.has-thumbs .svc-thumb {
    flex: 0 0 180px;
  }
  .svc-sidebar {
    padding: 20px 18px;
  }
  .svc-sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .svc-sidebar__item {
    padding: 10px 14px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
  }
  .svc-sidebar__sub {
    display: none;
  }
  .svc-sidebar__line {
    width: 0;
    height: 0;
  }
  .svc-sidebar__item.is-active {
    border-bottom: 2px solid var(--gold);
  }
  .svc-main__inner {
    min-height: 320px;
  }
}

/* ═══════════════════════════════════════
   통신사 비교 박은 영역 — 이미지 가운데 정렬 + 호버/워터마크 박지 말 것
═══════════════════════════════════════ */
.svc-main__inner.has-img .svc-main__img {
  object-fit: contain;
  object-position: center center;
  /* [신규] 하단 CTA 박은 박은 만큼 박은 padding 박음 */
  padding-bottom: 56px;
}
.svc-main__inner.has-img .svc-main__content {
  display: none;
}
.svc-main__inner.has-img::before {
  display: none;
}
.svc-main__inner.has-img {
  cursor: default;
}

/* ═══════════════════════════════════════
   [신규] 메인 박은 하단 박음 다픽 CTA
═══════════════════════════════════════ */
.svc-main__bottom-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.88);
  border-top: 1px solid rgba(240, 192, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 3;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.svc-main__bottom-cta:hover {
  background: rgba(240, 192, 0, 0.12);
  border-top-color: var(--gold);
}
.svc-main__bottom-cta-text {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.svc-main__bottom-cta-arrow {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .svc-main__bottom-cta {
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
  }
  .svc-main__bottom-cta-text {
    font-size: 0.78rem;
    text-align: center;
  }
  .svc-main__bottom-cta-arrow {
    font-size: 0.82rem;
  }
  .svc-main__inner.has-img .svc-main__img {
    padding-bottom: 70px;
  }
}
