/* ═══════════════════════════════════════
   DA 다폰 — style.css
   Color: Black / Gold #F0C000 / White
═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

: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;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ko);
  background: var(--black);
  color: var(--gray1);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══ 스크롤 애니메이션 ══ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══ 섹션 & 타이포 ══ */
section { padding: 100px 9%; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240,192,0,0.35);
  padding: 5px 14px; margin-bottom: 24px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.3; margin-bottom: 16px; word-break: keep-all; color: var(--white); }
.section-title em { font-style: normal; color: var(--gold); }
.section-sub { font-size: 1rem; color: var(--gray2); max-width: 560px; line-height: 1.8; margin-bottom: 56px; word-break: keep-all; }

/* ══ 버튼 ══ */
.btn-primary { background: var(--gold); color: var(--black); font-weight: 900; font-size: 1rem; padding: 16px 36px; border: none; cursor: pointer; letter-spacing: 1px; transition: background var(--transition), transform var(--transition); text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); font-weight: 700; font-size: 1rem; padding: 16px 36px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; letter-spacing: 1px; transition: border-color var(--transition), color var(--transition); text-decoration: none; display: inline-block; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ══ 이미지 슬라이더 ══ */
.img-slider { position: relative; width: 100%; height: 480px; margin-top: 64px; overflow: hidden; background: var(--black2); cursor: pointer; }
.img-slider__track { display: flex; height: 100%; transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1); will-change: transform; }
.img-slider__slide { min-width: 100%; height: 100%; flex-shrink: 0; background-size: cover; background-position: center; background-repeat: no-repeat; display: block; text-decoration: none; }
a.img-slider__slide { cursor: pointer; }
.img-slider__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.img-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); display: inline-block; transition: background 0.3s, width 0.3s, border-radius 0.3s; }
.img-slider__dot.is-active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ══ NAV ══ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 9%; height: 64px; background: rgba(0,0,0,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: box-shadow var(--transition); }
.nav--scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo-img { height: 36px; width: auto; object-fit: contain; }
.nav__brand { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 1px; margin-left: 10px; white-space: nowrap; }
.nav__slogan { position: absolute; left: 50%; transform: translateX(-50%); font-size: 0.95rem; font-weight: 900; color: var(--white); letter-spacing: 1.5px; white-space: nowrap; }
.nav__slogan strong { color: var(--gold); }
.nav__cta { background: var(--gold); color: var(--black); font-weight: 900; font-size: 0.85rem; padding: 9px 20px; border: none; cursor: pointer; letter-spacing: 1px; transition: background var(--transition); text-decoration: none; margin-left: 8px; white-space: nowrap; }
.nav__cta:hover { background: var(--gold-dark); }
.nav__menu { display: flex !important; flex-direction: row !important; align-items: center; gap: 4px; list-style: none !important; margin: 0; padding: 0; position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.nav__menu li { display: inline-flex !important; margin: 0; padding: 0; }
.nav__link { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; font-weight: 500; padding: 6px 14px; letter-spacing: 0.5px; transition: color var(--transition); position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav__link:hover { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--gold); }

/* ══ HERO ══ */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 120px 9% 80px; position: relative; overflow: hidden; background-image: url('assets/images/bg-store-04.png'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 100%); z-index: 0; pointer-events: none; }
.hero__watermark, .hero__eyebrow, .hero__title, .hero__sub, .hero__btns { position: relative; z-index: 1; }
.hero__eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; }
.hero__title { font-size: clamp(2.2rem, 5.5vw, 4.8rem); font-weight: 900; line-height: 1.2; max-width: 780px; margin-bottom: 28px; word-break: keep-all; color: var(--white); }
.hero__title em { font-style: normal; color: var(--gold); }
.hero__title .underline { position: relative; display: inline-block; }
.hero__title .underline::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 4px; background: var(--gold); }
.hero__sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.85; margin-bottom: 48px; word-break: keep-all; }
.hero__sub strong { color: var(--white); font-weight: 700; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══ STATS ══ */
.stats { background: #000000; border-top: 3px solid var(--gold); border-bottom: 1px solid rgba(255,255,255,0.04); padding: 40px 9%; display: grid; grid-template-columns: repeat(3, 1fr); }
.stats__item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.06); }
.stats__item:last-child { border-right: none; }
.stats__number { font-family: var(--font-en); font-size: clamp(2.4rem, 4vw, 3.6rem); color: var(--gold); line-height: 1; margin-bottom: 8px; letter-spacing: 2px; }
.stats__label { font-size: 0.85rem; color: var(--gray2); letter-spacing: 1px; }

/* ══ PROBLEM ══ */
.problem { background: var(--black); }

.problem__head { margin-bottom: 0; }

.problem__character {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 52px;
  text-align: center;
}
.problem__char-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(240,192,0,0.2));
  animation: char-float 3.5s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}
@keyframes char-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.problem__char-bubble {
  background: var(--gold);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.65;
  padding: 14px 22px;
  border-radius: 16px 16px 16px 4px;
  margin-bottom: 24px;
  word-break: keep-all;
}
.problem__char-bubble strong { display: block; font-size: 1rem; }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.problem__card {
  background: var(--black2);
  padding: 36px 32px;
  border-top: 3px solid transparent;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.problem__card:hover { border-color: var(--gold); background: var(--black3); }
.problem__card-num {
  font-family: var(--font-en);
  font-size: 3.5rem;
  color: rgba(240,192,0,0.08);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.problem__card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--white); word-break: keep-all; }
.problem__card p { font-size: 0.875rem; color: var(--gray2); line-height: 1.75; word-break: keep-all; }

/* ══ 스크롤 인디케이터 ══ */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0 40px;
  background: var(--black);
  position: relative;
}

.scroll-indicator__track {
  width: 2px;
  height: 80px;
  background: rgba(240,192,0,0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-indicator__arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  transition: transform 0.1s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,192,0,0.5);
}

/* ══ VOICE ══ */
.voice { background: var(--black2); }

/* 헤드 — 가운데 정렬 */
.voice__head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voice__label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240,192,0,0.35);
  padding: 5px 14px; margin-bottom: 24px;
}
.voice__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.35;
  color: var(--white); word-break: keep-all;
  text-align: center;
}
.voice__title em { font-style: normal; color: var(--gold); }

/* 카드 그리드 */
.voice__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;   /* 간격 넓혀서 숨통 트임 */
}

.voice__card {
  background: var(--black3);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  border-radius: 4px;
  /* JS가 transform/opacity 직접 제어 */
  will-change: transform, opacity;
  transition: border-color var(--transition), background var(--transition);
}
.voice__card:hover { border-color: var(--gold); background: var(--black4); }

/* 아바타 */
.voice__avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.voice__avatar--01 { background: #2a1a00; border: 2px solid rgba(240,192,0,0.35); }
.voice__avatar--02 { background: #001a2a; border: 2px solid rgba(100,180,255,0.35); }
.voice__avatar--03 { background: #1a002a; border: 2px solid rgba(180,100,255,0.35); }
.voice__avatar--04 { background: #001a00; border: 2px solid rgba(100,220,100,0.35); }

/* 태그 */
.voice__tag {
  font-size: 0.8rem; font-weight: 700;
  color: var(--gray2); letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* 고민 멘트 — 크기 키우고 줄간격 확보 */
.voice__text {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); line-height: 1.75;
  word-break: keep-all;
  margin-bottom: 28px;
  flex: 1;
}

/* 다폰의 답 */
.voice__answer {
  background: var(--black);
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  margin-top: auto;
  border-radius: 0 4px 4px 0;
}
.voice__answer-label {
  display: block;
  font-size: 0.72rem; font-weight: 900;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.voice__answer p {
  font-size: 0.88rem; color: var(--gray1);  /* gray2 → gray1 로 밝게 */
  line-height: 1.75; word-break: keep-all;
}

/* 반응형 */
@media (max-width: 900px) {
  .voice__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 640px) {
  .voice__grid { grid-template-columns: 1fr; gap: 8px; }
  .voice__card { padding: 28px 22px; }
  .voice__text { font-size: 0.95rem; }
}

/* ══ SOLUTION ══ */
.solution { background: var(--black2); }
.solution__layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }

/* 왼쪽 — 6개 혜택 리스트 */
.solution__benefits { display: flex; flex-direction: column; gap: 3px; }

.solution__benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--black);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition), background var(--transition);
}
.solution__benefit:hover { transform: translateX(6px); background: #0a0a0a; }
.solution__check { width: 28px; height: 28px; background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.solution__benefit h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; color: var(--white); word-break: keep-all; }
.solution__benefit p { font-size: 0.84rem; color: var(--gray2); line-height: 1.7; word-break: keep-all; }

/* 오른쪽 — 숫자 카드 */
.solution__cards { display: flex; flex-direction: column; gap: 3px; position: sticky; top: 80px; }
.solution__card { background: var(--black3); padding: 28px 32px; border-left: 4px solid transparent; transition: border-color var(--transition); }
.solution__card:hover { border-color: var(--gold); }
.solution__card-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.solution__card-value { font-family: var(--font-en); font-size: 2.4rem; color: var(--white); letter-spacing: 1px; line-height: 1; margin-bottom: 6px; }
.solution__card-desc { font-size: 0.82rem; color: var(--gray2); }

/* ══ STORE GALLERY ══ */
.store { padding: 0; }
.store__grid { display: grid; grid-template-columns: 1fr 1fr; height: 560px; }
.store__item { position: relative; overflow: hidden; height: 560px; }
.store__bg { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; filter: blur(4px) brightness(0.4); transform: scale(1.08); transition: transform 0.6s ease, filter 0.6s ease; }
.store__item:hover .store__bg { transform: scale(1.12); filter: blur(2px) brightness(0.55); }
.store__overlay { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; }
.store__sub { font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.store__title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.store__title em { font-style: normal; color: var(--gold); }
.store__desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.store__item:first-child { border-right: 1px solid rgba(240,192,0,0.15); }

/* ══ BRANCHES ══ */
.branches { background: var(--black); }
.branches__slider { overflow: hidden; position: relative; height: 260px; display: flex; align-items: flex-start; padding-top: 10px; mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); }
.branches__track { display: flex; gap: 16px; width: max-content; animation: slide-infinite 24s linear infinite; align-items: flex-start; }
.branches__slider:hover .branches__track { animation-play-state: paused; }
@keyframes slide-infinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.branches__item { position: relative; width: 220px; height: 220px; flex-shrink: 0; cursor: pointer; perspective: 1000px; text-decoration: none; display: block; }
.branches__item__inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 4px; }
.branches__item:hover .branches__item__inner { transform: rotateY(180deg); }
.branches__item__front, .branches__item__back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 4px; overflow: hidden; }
.branches__item__front { border: 1px solid rgba(255,255,255,0.08); }
.branches__item__front img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.branches__item__front span { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: var(--white); font-size: 0.85rem; font-weight: 700; padding: 20px 12px 10px; text-align: center; letter-spacing: 1px; }
.branches__item__back { background: var(--gold); transform: rotateY(180deg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; padding: 24px; text-align: center; }
.branches__item__back h3 { font-size: 1.1rem; font-weight: 900; color: var(--black); letter-spacing: 1px; }
.branches__item__back p { font-size: 0.82rem; color: rgba(13,13,13,0.7); line-height: 1.7; }
.branches__item__back .flip-cta { display: inline-block; background: var(--black); color: var(--gold); font-weight: 900; font-size: 0.82rem; padding: 8px 20px; letter-spacing: 1px; margin-top: 4px; border-radius: 2px; transition: background var(--transition); }
.branches__item__back .flip-cta:hover { background: #222; }

/* ══ TARGET ══ */
.target { background: var(--black2); }
.target__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3px; }
.target__card { background: var(--black3); padding: 40px 32px; position: relative; overflow: hidden; transition: background var(--transition); }
.target__card:hover { background: var(--black4); }
.target__number { font-family: var(--font-en); font-size: 5rem; color: rgba(240,192,0,0.06); position: absolute; top: 10px; right: 20px; line-height: 1; pointer-events: none; }
.target__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,192,0,0.08); border: 1px solid rgba(240,192,0,0.25); color: var(--gold); font-size: 0.78rem; font-weight: 700; padding: 5px 12px; margin-bottom: 20px; letter-spacing: 1px; }
.target__badge::before { content: '✓'; }
.target__card h3 { font-size: 1.15rem; font-weight: 900; margin-bottom: 12px; line-height: 1.4; word-break: keep-all; color: var(--white); }
.target__card p { font-size: 0.875rem; color: var(--gray2); line-height: 1.75; word-break: keep-all; }

/* ══ CONTACT ══ */
.contact { background: var(--black); border-top: 3px solid var(--gold); }
.contact__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.3; margin-bottom: 20px; word-break: keep-all; color: var(--white); }
.contact__info h2 em { font-style: normal; color: var(--gold); }
.contact__info p { font-size: 0.95rem; color: var(--gray2); line-height: 1.85; margin-bottom: 36px; word-break: keep-all; }
.contact__guarantee { display: flex; flex-direction: column; gap: 14px; }
.guarantee__item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--gray2); }
.guarantee__dot { width: 8px; height: 8px; background: var(--gold); flex-shrink: 0; }
.form { background: var(--black2); padding: 40px; border: 1px solid rgba(255,255,255,0.06); }
.form__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--white); }
.form__group { margin-bottom: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; color: var(--gray2); text-transform: uppercase; margin-bottom: 8px; }
.form__label span { color: var(--gold); margin-left: 2px; }
.form__input, .form__select, .form__textarea { width: 100%; background: var(--black3); border: 1px solid rgba(255,255,255,0.08); color: var(--white); font-family: var(--font-ko); font-size: 0.95rem; padding: 12px 16px; outline: none; transition: border-color var(--transition); appearance: none; }
.form__input:focus, .form__select:focus, .form__textarea:focus { border-color: var(--gold); }
.form__input::placeholder, .form__textarea::placeholder { color: var(--gray3); }
.form__select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form__select option { background: var(--black2); color: var(--white); }
.form__textarea { resize: vertical; min-height: 100px; }
.form__submit { width: 100%; background: var(--gold); color: var(--black); font-family: var(--font-ko); font-size: 1rem; font-weight: 900; padding: 16px; border: none; cursor: pointer; letter-spacing: 2px; margin-top: 8px; transition: background var(--transition), transform var(--transition); }
.form__submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.form__submit:active { transform: translateY(0); }
.form__submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form__privacy { font-size: 0.78rem; color: var(--gray3); text-align: center; margin-top: 14px; line-height: 1.6; }
.form__success { display: none; text-align: center; padding: 48px 20px; }
.form__success.show { display: block; }
.form__success-icon { width: 64px; height: 64px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; color: var(--black); }
.form__success h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 10px; color: var(--white); }
.form__success p { font-size: 0.9rem; color: var(--gray2); }

/* ══ 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; }
.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; }

/* ══ 플로팅 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; }

/* ══ 반응형 — 태블릿 ══ */
@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; }
  .solution__layout { grid-template-columns: 1fr; gap: 40px; }
  .solution__cards { position: static; }
  .contact__layout { grid-template-columns: 1fr; gap: 40px; }
  .problem__grid { grid-template-columns: repeat(2, 1fr); }
  .problem__char-img { height: 160px; }
  .floating-box { right: 16px; }
  .img-slider { height: 360px; }
  .stats { padding: 40px 7%; }
  .footer-extended__legal { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 7%; }
  .footer-extended__legal-logos { width: 100%; justify-content: center; }
}

/* ══ 반응형 — 모바일 ══ */
@media (max-width: 640px) {
  section { padding: 60px 5%; }
  .nav { padding: 0 5%; height: 56px; }
  .nav__logo-img { height: 26px; }
  .nav__cta { font-size: 0.75rem; padding: 7px 14px; letter-spacing: 0; }
  .hero { padding: 90px 5% 52px; min-height: 100svh; }
  .hero__eyebrow { font-size: 0.72rem; letter-spacing: 2px; margin-bottom: 18px; }
  .hero__btns { flex-direction: column; gap: 10px; }
  .hero__btns .btn-primary, .hero__btns .btn-secondary { width: 100%; text-align: center; padding: 15px 20px; font-size: 0.95rem; }
  .stats { grid-template-columns: 1fr; gap: 0; padding: 0 5%; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 24px 0; text-align: left; display: flex; align-items: center; gap: 16px; }
  .stats__item:last-child { border-bottom: none; }
  .stats__number { font-size: 2.4rem; margin-bottom: 0; }
  .stats__label { font-size: 0.82rem; }
  .section-tag { font-size: 0.7rem; padding: 4px 10px; margin-bottom: 16px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 12px; }
  .section-sub { font-size: 0.9rem; margin-bottom: 36px; }
  .problem__grid { grid-template-columns: 1fr; gap: 2px; }
  .problem__card { padding: 28px 22px; }
  .problem__card h3 { font-size: 1rem; }
  .problem__card-num { font-size: 2.8rem; }
  .problem__char-img { height: 130px; }
  .problem__character { flex-direction: column; align-items: center; }
  .problem__char-bubble { border-radius: 16px; text-align: center; }
  .solution__layout { gap: 28px; }
  .solution__item { padding: 18px; gap: 12px; }
  .solution__check { width: 24px; height: 24px; font-size: 0.8rem; }
  .solution__item h4 { font-size: 0.92rem; }
  .solution__item p { font-size: 0.82rem; }
  .solution__cards { gap: 2px; }
  .solution__card { padding: 20px 22px; }
  .solution__card-value { font-size: 2rem; }
  .store__grid { grid-template-columns: 1fr; height: auto; }
  .store__item { height: 360px; }
  .store__item:first-child { border-right: none; border-bottom: 1px solid rgba(240,192,0,0.15); }
  .store__overlay { padding: 32px 24px; }
  .branches__item { width: 160px; height: 160px; }
  .branches__track { gap: 10px; }
  .branches__item__back h3 { font-size: 0.9rem; }
  .branches__item__back p { display: none; }
  .target__grid { grid-template-columns: 1fr; gap: 2px; }
  .target__card { padding: 28px 22px; }
  .target__number { font-size: 4rem; }
  .target__card h3 { font-size: 1.05rem; }
  .contact__info h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .contact__guarantee { gap: 10px; }
  .guarantee__item { font-size: 0.85rem; }
  .form { padding: 24px 18px; }
  .form__title { font-size: 1rem; margin-bottom: 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__input, .form__select, .form__textarea { font-size: 0.9rem; padding: 11px 14px; }
  .form__submit { font-size: 0.95rem; letter-spacing: 1px; }
  .img-slider { height: 220px; margin-top: 56px; }
  .floating-box { display: none; }
  .footer-extended__legal { padding: 28px 5%; }
}

.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-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;
}

/* 하단 3개 로고 */
.footer-logos__sub {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ══ FOOTER 추가 스타일 ══ */
.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-main-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  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;
}