/* ============================================================
   강한 부동산 — 시네마틱 랜딩 페이지
   딥 네이비 × 골드 × 크림 / Black Han Sans + Anton + Noto Sans KR
   ============================================================ */

:root {
  --bg: #060D1A;
  --navy: #0A1428;
  --navy-2: #0F1D33;
  --gold: #C9A24B;
  --gold-bright: #E8CB84;
  --gold-deep: #A8823A;
  --cream: #F6F0E4;
  --muted: rgba(246, 240, 228, .62);
  --line: rgba(201, 162, 75, .22);
  --font-display: 'Black Han Sans', 'Noto Sans KR', sans-serif;
  --font-num: 'Anton', 'Black Han Sans', sans-serif;
  --font-body: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy); }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- 프리로더 ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity .7s ease, visibility .7s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader__logo { width: clamp(64px, 14vw, 96px); filter: drop-shadow(0 6px 24px rgba(201,162,75,.35)); animation: plFloat 2.4s ease-in-out infinite; }
@keyframes plFloat { 50% { transform: translateY(-8px); } }
.preloader__word { font-family: var(--font-display); font-size: clamp(22px, 5vw, 30px); letter-spacing: .35em; margin-left: .35em; color: var(--cream); }
.preloader__bar { width: min(240px, 60vw); height: 2px; background: rgba(246,240,228,.14); border-radius: 2px; overflow: hidden; }
#preloaderFill { display: block; width: 0%; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); transition: width .25s ease; }
.preloader__pct { font-family: var(--font-num); font-size: 13px; letter-spacing: .18em; color: var(--gold); }

/* ---------- 필름 그레인 ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 60; pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
  will-change: transform;
}
@keyframes grainShift {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(-38px, 24px, 0); }
  50% { transform: translate3d(22px, -30px, 0); }
  75% { transform: translate3d(-14px, -18px, 0); }
  100% { transform: translate3d(0,0,0); }
}

/* ---------- 헤더 ---------- */
#siteHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  padding-top: calc(14px + env(safe-area-inset-top));
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
#siteHeader.scrolled {
  background: rgba(6, 13, 26, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand span { font-family: var(--font-display); font-size: 19px; letter-spacing: .08em; }
.header-cta {
  border: 1px solid var(--gold); background: transparent; color: var(--gold-bright);
  font-weight: 700; font-size: 14px; letter-spacing: .06em;
  padding: 9px 18px; border-radius: 999px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.header-cta:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }

/* ---------- 공통: 배경 비디오 / 오버레이 ---------- */
.bgvid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,13,26,.7) 0%, rgba(6,13,26,.54) 45%, rgba(6,13,26,.9) 100%);
}
.overlay--lead {
  background: linear-gradient(180deg, rgba(6,13,26,.84) 0%, rgba(6,13,26,.66) 40%, rgba(6,13,26,.94) 100%);
}

/* ---------- ① HERO ---------- */
.hero {
  position: relative; height: 100vh; height: 100svh;
  overflow: hidden;
}
.hero__video { z-index: 0; }
.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 105%, rgba(6,13,26,.92) 0%, rgba(6,13,26,.25) 45%, transparent 70%),
    linear-gradient(180deg, rgba(6,13,26,.55) 0%, transparent 30%, transparent 55%, rgba(6,13,26,.82) 100%);
}
.hero__content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 16px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(58px, 16.5vw, 240px);
  line-height: .98; letter-spacing: -0.015em;
  color: var(--cream);
  text-shadow: 0 10px 60px rgba(0,0,0,.55);
  white-space: nowrap;
}
.ht { display: inline-block; overflow: hidden; vertical-align: bottom; }
.ht--sp { width: .18em; }
.ht i {
  display: inline-block; font-style: normal;
  transform: translateY(112%);
  will-change: transform;
  animation: heroCharIn .85s cubic-bezier(.22,.8,.24,1) both;
}
.hero__title .ht:nth-of-type(1) i { animation-delay: .12s; }
.hero__title .ht:nth-of-type(2) i { animation-delay: .19s; }
.hero__title .ht:nth-of-type(4) i { animation-delay: .30s; }
.hero__title .ht:nth-of-type(5) i { animation-delay: .37s; }
.hero__title .ht:nth-of-type(6) i { animation-delay: .44s; }
@keyframes heroCharIn { from { transform: translateY(112%); } to { transform: translateY(0); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero__sub {
  margin-top: clamp(14px, 2.6vw, 26px);
  font-size: clamp(15px, 2.6vw, 24px);
  font-weight: 500; letter-spacing: .14em;
  color: var(--cream);
  opacity: 0;
  animation: heroRise .9s ease .62s both;
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.hero__ai {
  margin-top: clamp(14px, 2.2vw, 22px);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: clamp(11px, 1.7vw, 14px); font-weight: 500; letter-spacing: .08em;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  background: rgba(6,13,26,.74);
  padding: 8px 16px; border-radius: 999px;
  opacity: 0;
  animation: heroRise .9s ease .8s both;
}
.ai-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(232,203,132,.6);
  animation: aiPulse 1.8s ease-out infinite;
}
@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,203,132,.55); }
  70% { box-shadow: 0 0 0 9px rgba(232,203,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,203,132,0); }
}
.hero__cta {
  margin-top: clamp(22px, 3.4vw, 38px);
  font-family: var(--font-body); font-weight: 900;
  font-size: clamp(15px, 2.2vw, 18px); letter-spacing: .04em;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: none; border-radius: 999px;
  padding: clamp(14px, 2vw, 18px) clamp(30px, 5vw, 46px);
  box-shadow: 0 12px 40px rgba(201,162,75,.35);
  opacity: 0;
  animation: heroFade .9s ease .98s both;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero__cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 50px rgba(201,162,75,.5); }
.hero__cta .arrow { display: inline-block; margin-left: 6px; animation: bounceDown 1.6s ease infinite; }
@keyframes bounceDown { 50% { transform: translateY(4px); } }
.hero__hint {
  position: absolute; bottom: calc(20px + env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-num); font-size: 10px; letter-spacing: .34em; color: var(--muted);
}
.hero__hint span { width: 1px; height: 34px; background: linear-gradient(180deg, transparent, var(--gold)); animation: hintDrop 1.8s ease infinite; }
@keyframes hintDrop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- 마퀴 스트립 ---------- */
.marquee {
  position: relative; z-index: 6;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--navy);
  overflow: hidden; padding: 14px 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  width: max-content; white-space: nowrap;
  animation: marqueeMove 30s linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee__track span {
  font-family: var(--font-display); font-size: 15px; letter-spacing: .14em;
  color: rgba(246,240,228,.55);
}
.marquee__track i { font-style: normal; color: var(--gold); font-size: 13px; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ---------- ② THREE PROMISES ---------- */
.promises {
  position: relative; height: 100vh; height: 100svh;
  overflow: hidden;
}
.promises__inner {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center;
  padding: calc(76px + env(safe-area-inset-top)) 20px 40px;
}
.promises__heading {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 4.6vw, 44px); letter-spacing: .02em;
  text-align: center; text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.promises__heading em { font-style: normal; color: var(--gold-bright); }
.promises__stage { position: relative; flex: 1; width: 100%; max-width: 860px; }
.promise {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 12px;
  opacity: 0; visibility: hidden;
}
.promise__num {
  font-family: var(--font-num);
  font-size: clamp(110px, 22vw, 240px);
  line-height: 1; color: transparent;
  -webkit-text-stroke: 2px rgba(201,162,75,.75);
  text-shadow: 0 0 80px rgba(201,162,75,.25);
}
.promise h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 7.4vw, 72px);
  margin-top: -0.42em; letter-spacing: .01em;
  color: var(--cream); text-shadow: 0 8px 40px rgba(0,0,0,.7);
}
.promise p {
  margin-top: clamp(10px, 1.8vw, 18px);
  font-size: clamp(15px, 2.4vw, 21px); font-weight: 500;
  color: var(--muted); text-shadow: 0 2px 16px rgba(0,0,0,.7);
}
.promise p strong { color: var(--gold-bright); font-weight: 700; }
.promises__progress { display: flex; gap: 10px; padding-bottom: env(safe-area-inset-bottom); }
.pp {
  width: 44px; height: 3px; border-radius: 3px;
  background: rgba(246,240,228,.18);
  position: relative; overflow: hidden;
}
.pp::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.pp.on::after { transform: scaleX(1); }

/* ---------- ③ 매물 접수 폼 ---------- */
.lead { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; display: flex; align-items: center; }
.lead__inner {
  position: relative; z-index: 5; width: 100%;
  max-width: 660px; margin: 0 auto;
  padding: clamp(90px, 14vh, 140px) 20px clamp(60px, 8vh, 90px);
}
.lead__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 6.4vw, 54px); line-height: 1.22;
  text-align: center; letter-spacing: .01em;
  text-shadow: 0 6px 36px rgba(0,0,0,.7);
  margin-bottom: clamp(26px, 4vh, 40px);
}
.lead__title em { font-style: normal; color: var(--gold-bright); }
.lead__form {
  background: rgba(10, 20, 40, .78);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.pills { border: none; margin-bottom: 20px; }
.pills legend {
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  color: var(--gold-bright); margin-bottom: 10px;
}
.pills__row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { position: relative; flex: 1 1 auto; }
.pill input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.pill span {
  display: flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 10px 14px;
  border: 1px solid rgba(246,240,228,.22); border-radius: 14px;
  font-size: 15px; font-weight: 500; color: var(--cream);
  background: rgba(246,240,228,.04);
  transition: all .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.pill input:checked + span {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: var(--gold); color: var(--navy); font-weight: 900;
  box-shadow: 0 8px 24px rgba(201,162,75,.35);
}
.pill input:focus-visible + span { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 14px; font-weight: 700; letter-spacing: .04em;
  color: var(--gold-bright); margin-bottom: 10px;
}
.field input {
  width: 100%; min-height: 54px;
  background: rgba(246,240,228,.06);
  border: 1px solid rgba(246,240,228,.22); border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  color: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.field input::placeholder { color: rgba(246,240,228,.35); }
.field input:focus { outline: none; border-color: var(--gold); background: rgba(246,240,228,.09); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
  margin-bottom: 22px; cursor: pointer;
}
.consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--gold); cursor: pointer; flex: none; }
.consent small { color: rgba(246,240,228,.42); }
.btn-gold {
  width: 100%; min-height: 60px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy);
  font-size: 18px; font-weight: 900; letter-spacing: .05em;
  border: none; border-radius: 16px;
  box-shadow: 0 14px 40px rgba(201,162,75,.35);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(201,162,75,.5); }
.btn-gold:active { transform: translateY(0); }
.btn-gold[disabled] { opacity: .6; transform: none; cursor: wait; }
.form-msg { margin-top: 12px; font-size: 14px; font-weight: 500; text-align: center; color: #ff9d9d; min-height: 1.2em; }
.form-msg.ok { color: var(--gold-bright); }

.lead__success {
  background: rgba(10, 20, 40, .78);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(40px, 7vw, 60px) clamp(22px, 4vw, 34px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.success-check {
  width: 78px; height: 78px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy); font-size: 38px; font-weight: 900;
  box-shadow: 0 14px 44px rgba(201,162,75,.45);
  animation: popIn .5s cubic-bezier(.2, 1.6, .4, 1) both;
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.lead__success h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 5vw, 36px); margin-bottom: 8px; }
.lead__success p { font-size: clamp(15px, 2.6vw, 18px); font-weight: 500; }
.success-sub { margin-top: 6px; color: var(--muted); font-size: 14px !important; }

/* ---------- 전화 바로 연결 플로팅 버튼 ---------- */
.callfab {
  position: fixed;
  right: 18px; bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 75;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy); text-decoration: none;
  font-size: 15px; font-weight: 900; letter-spacing: .03em;
  box-shadow: 0 12px 36px rgba(201,162,75,.45), 0 4px 12px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .5s ease, visibility .5s ease, transform .5s ease, box-shadow .25s ease;
}
body.ready .callfab { opacity: 1; visibility: visible; transform: translateY(0); }
.callfab:hover { box-shadow: 0 16px 44px rgba(201,162,75,.6), 0 6px 16px rgba(0,0,0,.4); }
.callfab em { font-style: normal; }
.callfab::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid rgba(232,203,132,.75);
  animation: fabPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: .8; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* 접수 완료 화면의 통화 버튼 */
.btn-gold--call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: auto; min-height: 54px;
  margin-top: 22px; padding: 14px 24px;
  border-radius: 999px; text-decoration: none;
  font-size: 15px;
}

/* ---------- ④ Footer ---------- */
.footer {
  position: relative; z-index: 6;
  background: #050B16;
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 20px calc(30px + env(safe-area-inset-bottom));
}
.footer__inner { max-width: 1020px; margin: 0 auto; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 46px; height: 46px; object-fit: contain; }
.footer__brand-txt { display: flex; flex-direction: column; gap: 3px; }
.footer__brand-txt strong { font-family: var(--font-display); font-weight: 400; font-size: 21px; letter-spacing: .06em; }
.footer__brand-txt span { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.footer__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.f-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 46px; padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 900; letter-spacing: .03em;
  text-decoration: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.f-btn--call {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy); border: none;
  box-shadow: 0 8px 24px rgba(201,162,75,.3);
}
.f-btn--call:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,162,75,.45); }
.f-btn--ghost {
  background: transparent; color: var(--gold-bright);
  border: 1px solid var(--line);
}
.f-btn--ghost:hover { background: rgba(201,162,75,.12); }
.footer__divider { height: 1px; background: rgba(246,240,228,.1); margin: clamp(22px, 3.4vw, 34px) 0; }
.footer__info {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 36px;
}
.fi { display: flex; gap: 14px; align-items: baseline; }
.fi--wide { grid-column: 1 / -1; }
.fi dt {
  flex: none; width: 108px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  color: rgba(201,162,75,.85);
}
.fi dd { font-size: 13.5px; color: rgba(246,240,228,.78); }
.fi dd a { color: var(--gold-bright); text-decoration: none; font-weight: 700; }
.fi dd a:hover { text-decoration: underline; }
.footer__notice {
  margin-top: clamp(20px, 3vw, 28px);
  font-size: 12px; line-height: 1.7; color: rgba(246,240,228,.38);
}
.footer__bottom {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(246,240,228,.07);
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.footer__bottom p { font-size: 12px; letter-spacing: .04em; color: rgba(246,240,228,.32); }

/* ---------- 반응형 ---------- */
@media (max-width: 720px) {
  .brand span { font-size: 16px; }
  .hero__title { font-size: 17.5vw; }
  .pill { flex: 1 1 calc(33.33% - 8px); }
  #fsProperty .pill { flex: 1 1 calc(33.33% - 8px); }
  .pp { width: 34px; }
  .marquee__track span { font-size: 13px; }
  .promise__num { -webkit-text-stroke-width: 1.5px; }

  /* 모바일 성능: 그레인 애니메이션·글래스 블러 비활성화 */
  .grain { animation: none; }
  .lead__form, .lead__success {
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background: rgba(9, 18, 36, .93);
  }

  /* 플로팅 통화 버튼 */
  .callfab { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); padding: 13px 18px; font-size: 14px; }

  /* 푸터 */
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__actions { width: 100%; }
  .footer__actions .f-btn { flex: 1 1 auto; }
  .footer__info { grid-template-columns: 1fr; gap: 8px; }
  .fi dt { width: 96px; }
  .footer__bottom { justify-content: center; text-align: center; }
}
@media (max-width: 380px) {
  .hero__title { font-size: 18vw; }
  .pill span { font-size: 14px; min-height: 46px; }
}

/* ---------- 모션 최소화 ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .ai-dot, .hero__cta .arrow, .hero__hint span, .marquee__track { animation: none !important; }
  .ht i { animation: none !important; transform: none !important; }
  .hero__sub, .hero__ai, .hero__cta { animation: none !important; opacity: 1 !important; transform: none !important; }
}
