/* ==========================================================
   서경석의 이사방 V2 — 랜딩페이지
   ========================================================== */
:root {
  --ink: #0e1b34;
  --ink-2: #16264c;
  --ink-3: #1f3466;
  --cyan: #17a8cc;
  --cyan-soft: #e2f4fa;
  --orange: #ff6a2b;
  --orange-deep: #e9550f;
  --paper: #f7f8fa;
  --white: #ffffff;
  --text: #1c2537;
  --text-sub: #56617a;
  --line: #e3e8f0;

  --font-display: 'GmarketSans', 'Pretendard Variable', sans-serif;
  --font-body: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;

  --text-hero: clamp(2.3rem, 1.1rem + 4.8vw, 4.7rem);
  --text-h2: clamp(1.5rem, 1.1rem + 2vw, 2.5rem);
  --text-lead: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);

  --space-section: clamp(4rem, 3rem + 5vw, 8rem);
  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 40px rgba(14, 27, 52, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- 공통 타이포 ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--cyan);
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.3; }

.section-title { font-size: var(--text-h2); font-weight: 700; margin: 14px 0 12px; }
.section-lead { font-size: var(--text-lead); color: var(--text-sub); max-width: 560px; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  padding: 18px 36px;
  box-shadow: 0 8px 24px rgba(255, 106, 43, 0.35);
}
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.2s ease-in-out 2s infinite;
}
@keyframes btnShine {
  0% { left: -80%; }
  40%, 100% { left: 130%; }
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 106, 43, 0.45); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: transparent;
  color: #dce6f5;
  border: 1px solid rgba(220, 230, 245, 0.35);
  font-size: 0.95rem;
  padding: 16px 28px;
}
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-header.scrolled { background: rgba(14, 27, 52, 0.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
}
.logo-chip img { height: 40px; width: auto; display: block; }
.logo .v2 { color: #dce6f5; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em; }
.header-cta {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--orange-deep); }

/* ---------- 히어로 ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 110px 0 140px;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(14,27,52,0.94) 20%, rgba(14,27,52,0.55) 60%, rgba(14,27,52,0.85) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(23, 168, 204, 0.16);
  border: 1px solid rgba(23, 168, 204, 0.45);
  color: #8fdcf0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; animation: lineRise 0.9s var(--ease) both; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.18s; }
.hero h1 .accent {
  position: relative;
  font-style: normal;
  color: var(--cyan);
  z-index: 1;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.08em; right: -0.08em; bottom: 0.02em;
  height: 0.38em;
  background: rgba(255, 106, 43, 0.6);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: markerSwipe 0.6s var(--ease) 1.1s both;
}
@keyframes lineRise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
@keyframes markerSwipe {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-eyebrow, .hero-sub, .hero-actions, .hero-note { animation: fadeUp 0.8s var(--ease) both; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero-sub { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.6s; }
.hero-note { animation-delay: 0.75s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: var(--text-lead);
  color: #b9c4da;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 18px; font-size: 0.85rem; color: #8794ad; }

/* 시그니처: 2견적 비교 카드 */
.compare-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.big-two {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16rem, 30vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(23, 168, 204, 0.55);
  filter: drop-shadow(0 0 24px rgba(23, 168, 204, 0.35));
  user-select: none;
  pointer-events: none;
  animation: twoGlow 4s ease-in-out infinite;
}
@keyframes twoGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(23, 168, 204, 0.25)); }
  50% { filter: drop-shadow(0 0 40px rgba(23, 168, 204, 0.55)); }
}
.quote-card {
  position: relative;
  width: min(250px, 42vw);
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s var(--ease);
}
.quote-card .badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--cyan);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.quote-card.b .badge { background: var(--ink-3); }
.quote-card h3 { font-size: 1rem; margin-bottom: 4px; }
.quote-card p { font-size: 0.8rem; color: var(--text-sub); }
.quote-card .rows { margin-top: 14px; display: grid; gap: 8px; }
.quote-card .row {
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
}
.quote-card .row b { font-weight: 600; }
.quote-card.a {
  z-index: 2;
  rotate: -6deg;
  translate: -38% -26%;
  animation: cardInA 0.9s var(--ease) 0.5s both, floatA 5.5s ease-in-out 1.6s infinite;
}
.quote-card.b {
  position: absolute;
  rotate: 5deg;
  translate: 44% 30%;
  animation: cardInB 0.9s var(--ease) 0.68s both, floatB 6.5s ease-in-out 1.8s infinite;
}
@keyframes cardInA {
  from { opacity: 0; transform: translateY(-70px) rotate(6deg) scale(0.9); }
  to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
@keyframes cardInB {
  from { opacity: 0; transform: translateY(70px) rotate(-6deg) scale(0.9); }
  to { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.vs-chip {
  position: absolute;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 106, 43, 0.5);
  animation: vsPop 0.5s var(--ease) 1.25s both;
}
.vs-chip::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(255, 106, 43, 0.6);
  animation: vsRing 2.4s ease-out 1.9s infinite;
}
@keyframes vsPop {
  from { opacity: 0; scale: 0.3; }
  to { opacity: 1; scale: 1; }
}
@keyframes vsRing {
  0% { opacity: 1; scale: 0.9; }
  70%, 100% { opacity: 0; scale: 1.5; }
}

/* 히어로 하단 티커 */
.hero-ticker {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 20, 38, 0.55);
  backdrop-filter: blur(6px);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: #9fb0cd;
  white-space: nowrap;
}
.ticker-track span b { color: #fff; font-weight: 700; }
.ticker-track .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 신뢰 배지 스트립 ---------- */
.trust-strip {
  background: var(--ink-2);
  color: #fff;
  padding: 48px 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.trust-item {
  padding: 28px 22px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-item:first-child { border-left: 0; }
.trust-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
}
.trust-item .num em { font-style: normal; color: var(--orange); }
.trust-item .label { font-size: 0.85rem; color: var(--text-sub); }

/* ---------- USP ---------- */
.usp { padding: var(--space-section) 0; background: var(--white); }
.usp-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.usp-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--cyan); }
.usp-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cyan-soft);
  color: var(--cyan);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.usp-card .icon svg { width: 26px; height: 26px; }
.usp-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.usp-card p { font-size: 0.95rem; color: var(--text-sub); }
.usp-card p strong { color: var(--text); font-weight: 600; }

/* ---------- 견적 신청 폼 ---------- */
.apply {
  padding: var(--space-section) 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
}
.apply .section-lead { color: #b9c4da; }
.apply-box {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.apply-steps { display: grid; gap: 0; }
.apply-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.apply-step .no {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(23, 168, 204, 0.18);
  border: 1px solid rgba(23, 168, 204, 0.5);
  color: #8fdcf0;
  font-family: var(--font-display);
  font-weight: 700;
  display: grid;
  place-items: center;
}
.apply-step h3 { font-size: 1.02rem; margin-bottom: 4px; }
.apply-step p { font-size: 0.88rem; color: #9fabc4; }
.form-frame {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.form-frame iframe { width: 100%; border: 0; border-radius: 10px; }

/* ---------- 갤러리 ---------- */
.gallery { padding: var(--space-section) 0 0; background: var(--paper); overflow: hidden; }
.gallery-track-wrap { margin-top: 44px; padding-bottom: var(--space-section); overflow-x: auto; scrollbar-width: none; }
.gallery-track-wrap::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  width: max-content;
}
.gallery-item {
  position: relative;
  flex: none;
  width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.gallery-item.wide { width: 420px; aspect-ratio: 16 / 11; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(14, 27, 52, 0.75));
}

/* ---------- 영상 ---------- */
.videos { padding: var(--space-section) 0; background: var(--white); }
.video-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
}
.video-side { display: grid; gap: 18px; }
.yt-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink) center / cover no-repeat;
  display: block;
}
.yt-facade::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(14, 27, 52, 0.25);
  transition: background 0.25s;
}
.yt-facade:hover::after { background: rgba(14, 27, 52, 0.05); }
.yt-facade .play {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255, 106, 43, 0.95);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease);
}
.yt-facade:hover .play { transform: translate(-50%, -50%) scale(1.1); }
.yt-facade .play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.yt-facade .vtitle {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(14, 27, 52, 0.85));
}
.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
}

/* ---------- 체크리스트 ---------- */
.checklist { padding: var(--space-section) 0; background: var(--paper); }
.check-tabs {
  margin-top: 44px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.check-tab {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text-sub);
  transition: all 0.25s var(--ease);
}
.check-tab[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.check-panel {
  margin-top: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.check-panel[hidden] { display: none; }
.check-panel h3 { font-size: 1.1rem; margin-bottom: 18px; }
.check-panel h3 span { color: var(--cyan); margin-right: 8px; }
.check-panel ul { list-style: none; display: grid; gap: 14px; }
.check-panel li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-sub);
}
.check-panel li::before {
  content: '';
  flex: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--cyan-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317a8cc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.check-panel li strong { color: var(--text); font-weight: 600; }

/* ---------- 지역 ---------- */
.regions { padding: var(--space-section) 0; background: var(--white); }
.region-grid { margin-top: 44px; display: grid; gap: 14px; }
.region-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.region-row .name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.region-row .name em { font-style: normal; display: block; font-size: 0.75rem; color: var(--cyan); font-weight: 500; }
.region-row .list { font-size: 0.9rem; color: var(--text-sub); line-height: 1.9; }
.region-row .all { color: var(--text); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { padding: var(--space-section) 0; background: var(--paper); }
.faq-list { margin-top: 44px; display: grid; gap: 12px; max-width: 780px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: var(--cyan); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: none;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2356617a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--cyan); outline-offset: -3px; }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--text-sub);
}

/* ---------- 마감 CTA / 푸터 ---------- */
.final-cta {
  padding: var(--space-section) 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.final-cta h2 { font-size: var(--text-h2); font-weight: 700; margin-bottom: 16px; }
.final-cta p { color: #b9c4da; margin-bottom: 34px; }
.site-footer {
  background: #0a1426;
  color: #6c7893;
  font-size: 0.8rem;
  padding: 40px 0 44px;
}
.footer-brand {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 0.78rem;
  line-height: 1.7;
}
.footer-info div { display: flex; gap: 8px; }
.footer-info div.wide { flex-basis: 100%; }
.footer-info dt { color: #4c5872; flex: none; }
.footer-info dt::after { content: ':'; margin-left: 2px; }
.footer-info dd { margin: 0; }

/* ---------- 모바일 고정 CTA ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 30px rgba(14, 27, 52, 0.15);
  display: none;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border-radius: 14px;
}

/* ---------- 리빌 애니메이션 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 반응형 ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 20px; }
  .compare-visual { min-height: 300px; order: -1; transform: scale(0.72); margin: -60px 0 -8px; }
  .apply-box { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item { border-top: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 640px) {
  .logo { white-space: nowrap; }
  .logo .v2 { display: none; }
  .header-cta { white-space: nowrap; font-size: 0.8rem; padding: 9px 16px; }
  .hero { padding: 96px 0 120px; }
  .usp-grid { grid-template-columns: 1fr; }
  .region-row { grid-template-columns: 1fr; gap: 4px; }
  .sticky-cta { display: block; }
  .hero-actions .btn-ghost { display: none; }
  .gallery-item { width: 240px; }
  .gallery-item.wide { width: 320px; }
  .check-panel { padding: 24px 20px; }
  body { padding-bottom: 80px; }
}
