/* ============================================
   CryptoFlow Visa — style.css
   Premium Dark Mode Landing Page
   Mobile-First (360~430px → 768px → 1024px+)
   ============================================ */


/* ── CSS Variables ───────────────────────── */
:root {
  --bg-deep:         #0B0E14;
  --bg-midnight:     #121722;
  --bg-card:         #161C2A;

  --blue:            #2F80FF;
  --blue-hover:      #5299FF;
  --blue-glow:       rgba(47, 128, 255, 0.35);

  --gold:            #D4AF37;
  --gold-light:      #E8C94B;
  --gold-dim:        rgba(212, 175, 55, 0.15);

  --gray-soft:       #AEB4C2;
  --gray-mid:        #6B7280;
  --gray-border:     rgba(174, 180, 194, 0.12);

  --white:           #FFFFFF;
  --white-90:        rgba(255,255,255,0.9);
  --white-60:        rgba(255,255,255,0.6);

  --font-headline:   'Inter', sans-serif;
  --font-body:       'Pretendard', 'Inter', sans-serif;

  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       18px;
  --radius-xl:       24px;

  --ease:            cubic-bezier(.22, .68, 0, 1.2);
  --container-max:   1120px;
  --container-px:    20px;
}


/* ── Reset ───────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}
ul, ol { list-style: none; }


/* ── Container ───────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}


/* ── Section Title (공통) ────────────────── */
.section-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(1.45rem, 4.2vw, 2rem);
  line-height: 1.3;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}
.section-title span { color: var(--blue); }


/* ── CTA Button (공통 기본체) ────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-headline);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: background 0.3s var(--ease),
              box-shadow 0.3s var(--ease),
              transform 0.15s ease;
}
.btn-cta:hover {
  background: var(--blue-hover);
  box-shadow: 0 0 28px var(--blue-glow);
  transform: translateY(-1px);
}
.btn-cta:active { transform: translateY(0); }

/* -- 크기 변형 -- */
.btn-cta--sm   { font-size: 0.82rem; padding: 10px 18px; }
.btn-cta--mid  { font-size: 1rem;    padding: 16px 32px; width: 100%; max-width: 380px; }
.btn-cta--hero { font-size: 1.05rem; padding: 18px 32px; width: 100%; max-width: 400px; }
.btn-cta--final{
  font-size: 1.15rem;
  padding: 20px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 0 32px var(--blue-glow);
}

/* -- 섹션 내 CTA 중앙 정렬 -- */
.compare .btn-cta--mid,
.process .btn-cta--mid,
.faq     .btn-cta--mid,
.cta-final .btn-cta--final { margin-inline: auto; display: flex; }


/* ============================================
   SCROLL REVEAL (등장 아니메이션)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   HEADER (Sticky / 고정)
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.4s;
}
.header--scrolled { background: rgba(11, 14, 20, 0.96); }

.header__inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 20px;
}

/* 로고 */
.header__logo {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.header__logo span { color: var(--blue); }

/* PC 네비 (≥1024) */
.header__nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  font-size: 0.88rem;
  color: var(--gray-soft);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--white); }

/* PC CTA (≥1024) */
.header__cta { display: none; }

/* 햄버거 (모바일) */
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.header--open .header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header--open .header__burger span:nth-child(2) { opacity: 0; }
.header--open .header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 드롭 메뉴 */
.header__mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
  background: rgba(11,14,20,0.97);
  border-top: 1px solid transparent;
}
.header--open .header__mobile-nav {
  max-height: 420px;
  border-top-color: var(--gray-border);
}
.header__mobile-nav a {
  display: block;
  padding: 15px var(--container-px);
  font-size: 0.93rem;
  color: var(--gray-soft);
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.2s, color 0.2s;
}
.header__mobile-nav a:hover { background: var(--bg-midnight); color: var(--white); }
.header__mobile-nav .btn-cta {
  margin: 18px var(--container-px) 20px;
  width: calc(100% - 40px);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 56px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* 배경 블로브 장식 */
.hero__bg-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(47,128,255,0.17) 0%, transparent 70%);
  filter: blur(90px);
  top: -60px; right: -120px;
}
.hero__bg-deco--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  top: auto; right: auto;
  bottom: 5%; left: -140px;
}

/* 내부 레이아웃 */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* ── 텍스트 영역 ── */
.hero__content {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(47,128,255,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 2.85rem);
  line-height: 1.16;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--gray-soft);
  margin-bottom: 30px;
}

/* ── 가격 배지 (50 vs 99) ── */
.hero__badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  min-width: 126px;
}
/* 공식 배지 */
.hero__badge--official {
  background: var(--bg-midnight);
  border: 1px solid var(--gray-border);
}
/* 추천 배지 */
.hero__badge--referral {
  background: linear-gradient(145deg, rgba(47,128,255,0.1), rgba(212,175,55,0.07));
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,0.14);
}

.hero__badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 5px;
}
.hero__badge--referral .hero__badge-label { color: var(--gold); }

.hero__badge-price {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}
.hero__badge--official .hero__badge-price {
  color: var(--gray-mid);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.hero__badge--referral .hero__badge-price { color: var(--gold); }

.hero__badge-tag {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,175,55,0.15);
  padding: 2px 9px;
  border-radius: 10px;
  margin-top: 5px;
}
.hero__badge-arrow {
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 700;
  line-height: 1;
}

/* CTA 보조 텍스트 */
.hero__cta-sub {
  margin-top: 16px;
  text-align: center;
}
.hero__cta-sub p {
  font-size: 0.77rem;
  color: var(--gray-mid);
  line-height: 1.75;
}

/* ── 카드 이미지 영역 ── */
.hero__card-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
}
.hero__card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(47,128,255,0.2) 0%, transparent 68%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.hero__card-img {
  position: relative;
  z-index: 1;
  max-width: 320px;
  width: 100%;
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45));
  transition: transform 0.5s var(--ease);
}
.hero__card-wrap:hover .hero__card-img {
  transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
}

/* ── Pain Hook ── */
.hero__pain {
  margin-top: 8px;
  padding: 24px 22px;
  background: var(--bg-midnight);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  text-align: center;
}
.hero__pain p {
  font-size: 0.87rem;
  color: var(--gray-soft);
  line-height: 1.85;
}
.hero__pain--hl {
  color: var(--white) !important;
  font-weight: 600;
  margin-top: 2px;
}


/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  padding: 84px 0;
  background: var(--bg-midnight);
}

.benefits__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefits__card {
  background: var(--bg-deep);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s;
}
/* 골드 보더 호버 효과 */
.benefits__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), transparent 55%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.benefits__card:hover::before { opacity: 1; }
.benefits__card:hover { box-shadow: 0 6px 28px rgba(212,175,55,0.08); }

.benefits__icon-wrap {
  width: 54px; height: 54px;
  margin-bottom: 20px;
}
.benefits__icon { width: 100%; height: 100%; }

.benefits__card h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--white);
  margin-bottom: 8px;
}
.benefits__card p {
  font-size: 0.87rem;
  color: var(--gray-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}
.benefits__micro {
  font-size: 0.71rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
}


/* ============================================
   PROCESS (30초 발급)
   ============================================ */
.process {
  padding: 84px 0;
  background: var(--bg-deep);
  text-align: center;
}

.process__steps {
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
.process__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 12px 0;
}
/* 수직 연결선 컨테이너 */
.process__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.process__num-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-midnight);
  border: 1.5px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray-soft);
  position: relative;
  z-index: 1;
  transition: border-color 0.35s, background 0.35s, color 0.35s, box-shadow 0.35s;
}
/* 강조 Step (02) */
.process__step--hl .process__num-circle {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(212,175,55,0.22);
}
/* 연결선 */
.process__line {
  width: 2px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gray-border), transparent);
  margin-top: 4px;
}
.process__step--hl .process__line {
  background: linear-gradient(to bottom, rgba(212,175,55,0.45), transparent);
}

/* 텍스트 */
.process__body { padding-top: 7px; text-align: left; }
.process__body h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.process__body p {
  font-size: 0.82rem;
  color: var(--gray-mid);
}
/* "약 30초" 배지 */
.process__time {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,175,55,0.13);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.4px;
}

/* 강조 문장 */
.process__emph {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 28px;
}


/* ============================================
   COMPARE (비교표)
   ============================================ */
.compare {
  padding: 84px 0;
  background: var(--bg-midnight);
}

/* 수평 스크롤 래퍼 (모바일) */
.compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 36px;
  border-radius: var(--radius-lg);
}
.compare__wrap::-webkit-scrollbar { display: none; }
.compare__wrap { -ms-overflow-style: none; scrollbar-width: none; }

.compare__table {
  width: 100%;
  min-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-border);
}

/* thead */
.compare__table thead tr { background: var(--bg-deep); }
.compare__th {
  padding: 17px 16px;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  border-bottom: 1px solid var(--gray-border);
  text-align: center;
  white-space: nowrap;
}
.compare__th--label  { text-align: left; color: var(--gray-mid);  width: 30%; }
.compare__th--general{ color: var(--gray-soft); width: 30%; }
.compare__th--crypto {
  color: var(--blue);
  width: 40%;
  background: rgba(47,128,255,0.06);
}

/* tbody 행 */
.compare__table tbody tr { border-bottom: 1px solid var(--gray-border); }
.compare__table tbody tr:last-child { border-bottom: none; }

.compare__label,
.compare__general,
.compare__crypto {
  padding: 16px 16px;
  font-size: 0.85rem;
  line-height: 1.55;
  vertical-align: middle;
}
.compare__label   { color: var(--white);     font-weight: 500; background: var(--bg-deep); }
.compare__general { color: var(--gray-mid);  text-align: center; background: var(--bg-midnight); }
.compare__crypto  { color: var(--gray-soft); text-align: center; background: rgba(47,128,255,0.04); }
.compare__crypto small {
  display: block;
  font-size: 0.71rem;
  color: var(--gray-mid);
  margin-top: 3px;
}

/* ── 가격 행 (골드 강조) ── */
.compare__row--price .compare__label--gold {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.compare__row--price .compare__general--price {
  color: var(--gray-mid);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  background: rgba(212,175,55,0.04);
}
.compare__row--price .compare__crypto--price {
  background: rgba(212,175,55,0.09);
  border-top: 1.5px solid rgba(212,175,55,0.28);
  border-bottom: 1.5px solid rgba(212,175,55,0.28);
  padding: 14px 16px;
}
.compare__row--price .compare__crypto--price strong {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  color: var(--gold);
  display: block;
}
.compare__row--price .compare__crypto--price small {
  color: var(--gold);
  opacity: 0.7;
}

/* 결심 문구 */
.compare__decision {
  text-align: center;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 22px;
}


/* ============================================
   TRUST & SOCIAL PROOF
   ============================================ */
.trust {
  padding: 84px 0;
  background: var(--bg-deep);
}

/* 로고 행 */
.trust__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 52px;
}
.trust__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.trust__logo-box {
  width: 58px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-midnight);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 6px;
}
.trust__logo-box svg { width: 100%; height: 100%; }
.trust__logo-item span {
  font-size: 0.68rem;
  color: var(--gray-mid);
  letter-spacing: 0.3px;
}

/* 신뢰 문구 열 */
.trust__info {
  max-width: 540px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}
.trust__info p {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.5;
}
.trust__dot {
  flex-shrink: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 7px rgba(47,128,255,0.45);
}

/* Live 상태 배지 */
.trust__live {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.trust__live-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-midnight);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 11px 18px;
  font-size: 0.77rem;
  color: var(--gray-soft);
}
.trust__live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 7px rgba(34,197,94,0.5);
  animation: pulse-live 2.2s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}


/* ============================================
   FAQ (아코디언)
   ============================================ */
.faq {
  padding: 84px 0;
  background: var(--bg-midnight);
  text-align: center;
}

.faq__list {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.faq__item { border-bottom: 1px solid var(--gray-border); }
.faq__item:first-child { border-top: 1px solid var(--gray-border); }

/* 질문 버튼 */
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 21px 0;
  text-align: left;
}
.faq__q-text {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--white);
  transition: color 0.25s;
}
.faq__q:hover .faq__q-text            { color: var(--blue); }
.faq__q[aria-expanded="true"] .faq__q-text { color: var(--blue); }

/* +/- 아이콘 */
.faq__q-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__q-icon i {
  display: block;
  width: 15px; height: 15px;
  position: relative;
}
/* 가로선 */
.faq__q-icon i::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--gray-soft);
  border-radius: 1px;
  transform: translateY(-50%);
  transition: background 0.3s;
}
/* 세로선 */
.faq__q-icon i::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  background: var(--gray-soft);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
/* 열린 상태 → 세로선 회전·소멸 */
.faq__q[aria-expanded="true"] .faq__q-icon i::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__q[aria-expanded="true"] .faq__q-icon i::before { background: var(--blue); }

/* 답변 (아코디언 본문) */
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq__a p {
  padding-bottom: 18px;
  font-size: 0.84rem;
  color: var(--gray-soft);
  line-height: 1.75;
  text-align: left;
}
.faq__note {
  color: var(--gray-mid) !important;
  font-size: 0.77rem !important;
  padding-top: 4px !important;
}

/* FAQ 하단 CTA */
.faq__cta-text {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}


/* ============================================
   URGENCY
   ============================================ */
.urgency {
  padding: 52px 0;
  background: var(--bg-deep);
}
.urgency__box {
  max-width: 620px;
  margin-inline: auto;
  background: var(--bg-midnight);
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 28px rgba(212,175,55,0.06);
}
.urgency__badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.11);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 4px 14px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.urgency__warn {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 14px;
}
.urgency__official {
  font-size: 0.81rem;
  color: var(--gray-mid);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.urgency__copy {
  font-size: 0.87rem;
  color: var(--gray-soft);
  line-height: 1.75;
}


/* ============================================
   FINAL CTA
   ============================================ */
.cta-final {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-midnight);
}
/* 배경 블로브 */
.cta-final__bg {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,255,0.14) 0%, transparent 68%);
  filter: blur(64px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-final__bg-2 {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 68%);
  filter: blur(54px);
  bottom: -90px; right: -70px;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-final__headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-final__sub {
  font-size: 0.95rem;
  color: var(--gray-soft);
  line-height: 1.75;
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 38px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 50px 0 38px;
  background: var(--bg-deep);
  border-top: 1px solid var(--gray-border);
  text-align: center;
}
.footer__logo {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__logo span { color: var(--blue); }
.footer__disclaimer {
  font-size: 0.74rem;
  color: var(--gray-mid);
  line-height: 1.9;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.footer__copy {
  font-size: 0.7rem;
  color: var(--gray-mid);
  opacity: 0.5;
}


/* ============================================
   MOBILE BOTTOM CTA BAR (스티키)
   ============================================ */
.mobile-cta-bar {
  display: none; /* 모바일에서 JS로 활성화 */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(11, 14, 20, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-border);
  padding: 12px 16px;
}
.mobile-cta-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--blue-glow);
  transition: background 0.2s;
}
.mobile-cta-bar__btn:active { background: var(--blue-hover); }


/* ============================================
   FAB (카카오 / 텔레그램 상담)
   ============================================ */
.fab {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
/* 미니 안내 텍스트 */
.fab__tooltip {
  font-size: 0.68rem;
  color: var(--white);
  background: rgba(18, 23, 34, 0.93);
  border: 1px solid var(--gray-border);
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.28s, transform 0.28s;
  pointer-events: none;
  margin-bottom: 2px;
}
.fab:hover .fab__tooltip { opacity: 1; transform: translateX(0); }

.fab__btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.32);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.fab__btn:hover {
  transform: scale(1.09);
  box-shadow: 0 6px 22px rgba(0,0,0,0.42);
}
.fab__btn svg { width: 28px; height: 28px; }
.fab__btn--kakao    { background: #FFE812; }
.fab__btn--telegram { background: #2AABEE; }


/* ============================================
   TOAST (좌하단 순환 팝업)
   ============================================ */
.toast-wrap {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 95;
  max-width: 290px;
  width: calc(100% - 40px);
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  background: rgba(18, 23, 34, 0.95);
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 15px 12px 15px 17px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.38);

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.toast--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast__msg {
  font-size: 0.77rem;
  color: var(--gray-soft);
  line-height: 1.55;
}
.toast__msg strong { color: var(--white); font-weight: 600; }
.toast__close {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-mid);
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.2s;
  background: none;
  border: none;
  line-height: 1;
}
.toast__close:hover { color: var(--white); }


/* ============================================
   RESPONSIVE — TABLET (≥ 768px)
   ============================================ */
@media (min-width: 768px) {
  /* Benefits → 3열 */
  .benefits__grid {
    flex-direction: row;
    gap: 18px;
  }
  .benefits__card { flex: 1; }

  /* Hero → 좌(텍스트) 우(카드) */
  .hero__inner {
    flex-direction: row;
    align-items: center;
  }
  .hero__content {
    flex: 1;
    text-align: left;
    max-width: 520px;
    margin: 0;
  }
  .hero__badge-wrap    { justify-content: flex-start; }
  .hero__cta-sub       { text-align: left; }
  .hero__card-wrap     { flex: 1; max-width: 420px; }

  /* 비교표 → 스크롤 불필요 */
  .compare__wrap  { overflow-x: visible; }
  .compare__table { min-width: 0; }

  /* Trust 로고 간격 */
  .trust__logos { gap: 22px; }
}


/* ============================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================ */
@media (min-width: 1024px) {
  /* Header: PC nav + CTA 표시, 햄버거 숨김 */
  .header__nav    { display: flex; }
  .header__cta    { display: inline-flex; }
  .header__burger { display: none; }

  /* Hero 여백 & 크기 조정 */
  .hero { min-height: 100vh; padding-top: 80px; padding-bottom: 90px; }
  .hero__headline { font-size: 3rem; }
  .hero__card-img { max-width: 440px; }

  /* 섹션 타이틀 크기 */
  .section-title { font-size: 2.2rem; }

  /* Mobile CTA 바 → 숨김 (PC는 Header CTA 사용) */
  .mobile-cta-bar { display: none !important; }

  /* FAB 위치 (하단 바 없으므로 아래로) */
  .fab { bottom: 38px; }
}


/* ============================================
   RESPONSIVE — MOBILE ONLY (< 768px)
   ============================================ */
@media (max-width: 767px) {
  /* Mobile CTA 바 표시 */
  .mobile-cta-bar { display: block; }

  /* FAB → 하단 CTA 바 위로 올림 */
  .fab        { bottom: 86px; right: 16px; }
  /* Toast → 하단 CTA 바 위로 올림 */
  .toast-wrap { bottom: 86px; left: 16px; }

  /* Hero: 카드 먼저 → 텍스트 */
  .hero__inner        { flex-direction: column; }
  .hero__card-wrap    { order: -1; max-width: 260px; }

  /* Footer 아래 여백 (하단 CTA 바 커버) */
  .footer { padding-bottom: 88px; }

  /* 비교표 수평 스크롤 활성 */
  .compare__wrap  { overflow-x: auto; }
  .compare__table { min-width: 500px; }

  /* Process 단계 간격 축소 */
  .process__steps { gap: 0; }
}


/* ============================================
   MICRO — 숫자 폰트(Inter Medium, tracking)
   ============================================ */
.hero__badge-price,
.compare__row--price strong,
.compare__row--price .compare__general--price {
  font-family: var(--font-headline);
  letter-spacing: 0.02em;
}

/* =========================================================
   v3 additions: 2-step CTA, delivery, route table, contact
   ========================================================= */
.hero__headline .gold{ color: var(--gold-light); }

.hero__cta-row{
  display:flex; flex-direction:column; gap:12px; margin-top:18px;
}
.btn-cta--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white-90);
  box-shadow: none;
}
.btn-cta--ghost:hover{ border-color: rgba(255,255,255,.28); transform: translateY(-1px); }

.callout{
  margin: 18px 0 18px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,.22);
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(255,255,255,.03));
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.callout__title{ font-weight:700; color: var(--white-90); margin-bottom:6px; }
.callout__desc{ color: var(--white-60); line-height:1.55; }
.callout__btn{
  display:inline-flex; margin-top:10px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(47,128,255,.14);
  border: 1px solid rgba(47,128,255,.28);
  color: var(--white-90);
  text-decoration:none;
}

.delivery{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.delivery__card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gray-border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.delivery__badge{
  width: 32px; height: 32px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(212,175,55,.16);
  border: 1px solid rgba(212,175,55,.32);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 10px;
}
.delivery__card h3{ margin: 0 0 6px; font-size: 1.05rem; }
.delivery__card p{ margin:0; color: var(--white-60); line-height:1.55; }

.copybox{
  margin-top: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.copybox__head{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  background: rgba(255,255,255,.03);
}
.copybox__title{ font-weight: 700; }
.copybox__desc{ color: var(--white-60); font-size: .92rem; margin-top: 2px; }
.copybox__btn{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white-90);
  cursor:pointer;
}
.copybox__btn:hover{ border-color: rgba(255,255,255,.28); }
.copybox__pre{
  margin:0;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .92rem;
  color: rgba(255,255,255,.86);
  white-space: pre-wrap;
  word-break: break-word;
}

.routeTable{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.routeTable__col{
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--gray-border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.routeTable__col--right{
  border-color: rgba(212,175,55,.25);
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(255,255,255,.02));
}
.routeTable__title{ font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.routeTable__price{ font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.routeTable__price span{ font-size: .95rem; font-weight: 700; opacity: .75; }
.routeTable__list{ margin:0; padding-left: 18px; color: var(--white-60); line-height:1.6; }
.routeTable__note{ margin-top: 10px; color: var(--white-60); font-size:.92rem; opacity:.9; }

.contact__grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.contact__card{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--gray-border);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  color: var(--white-90);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.contact__card:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.contact__icon{
  width: 40px; height: 40px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(47,128,255,.14);
  border: 1px solid rgba(47,128,255,.28);
  font-weight: 900;
}
.contact__meta{ flex:1; }
.contact__title{ font-weight: 800; margin-bottom: 2px; }
.contact__desc{ color: var(--white-60); font-size: .95rem; line-height:1.4; }
.contact__arrow{ opacity:.7; font-weight: 900; }

.noteBox{
  margin-top: 14px;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.noteBox__title{ font-weight: 900; margin-bottom: 8px; }
.noteBox__list{ margin:0; padding-left: 18px; color: var(--white-60); line-height:1.6; }

.process__cta-row{
  margin-top: 16px;
  display:flex; flex-direction:column; gap: 12px;
}

.sticky-cta__btns{ display:flex; gap: 10px; align-items:center; }
.sticky-cta__btns .btn-cta--sm{ max-width:none; }

@media (min-width: 900px){
  .hero__cta-row{ flex-direction:row; }
  .hero__cta-row .btn-cta{ flex: 1; }
  .delivery{ grid-template-columns: 1fr 1fr; }
  .routeTable{ grid-template-columns: 1fr 1fr; }
  .contact__grid{ grid-template-columns: 1fr 1fr; }
  .process__cta-row{ flex-direction:row; }
  .process__cta-row .btn-cta{ flex: 1; }
}

/* Trust gallery */
.trustGallery{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.trustGallery__item{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--gray-border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.trustGallery__item img{
  width:100%;
  height:auto;
  display:block;
}
.trustGallery__item figcaption{
  padding: 10px 12px;
  color: var(--white-60);
  font-size: .9rem;
  line-height:1.45;
}
@media (min-width: 900px){
  .trustGallery{ grid-template-columns: 1fr 1fr 1fr; }
}


/* v3.3 header width constraint (1200px) */
.header{width:100%;}
.header .header__inner{
  max-width:1200px;
  margin:0 auto;
  padding-left:16px;
  padding-right:16px;
}
@media(min-width:480px){
  .header .header__inner{padding-left:20px;padding-right:20px;}
}


/* ===== v4 additions: how/cards/global ===== */
.section__head{margin-bottom:18px;}
.section__head h2{font-size:22px;letter-spacing:-.2px;margin:0;}
.section__head .muted{margin:8px 0 0;}

.section--how .howGrid{
  display:grid; gap:14px;
  grid-template-columns:1fr;
}
@media(min-width:820px){
  .section--how .howGrid{grid-template-columns:1fr 1fr; gap:18px;}
}
.howCard{
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:16px 16px 14px;
}
.howCard__top{display:flex;align-items:center;gap:10px;margin-bottom:10px;}
.howIcon{
  width:38px;height:38px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  font-weight:800;
}
.howCard h3{margin:0;font-size:18px;}
.howSteps{margin:0;padding-left:18px;color:rgba(255,255,255,.86);}
.howSteps li{margin:6px 0;}
.howTagline{margin-top:14px;display:flex;flex-wrap:wrap;gap:8px;}
.pill{
  padding:8px 10px;border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.07);
  font-size:12px;color:rgba(255,255,255,.82);
}

.section--cards .cardTabs{
  display:flex;gap:8px;flex-wrap:wrap;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  padding:8px;border-radius:16px;
  margin:10px 0 14px;
}
.tabBtn{
  appearance:none;border:0;cursor:pointer;
  padding:10px 12px;border-radius:12px;
  background:transparent;color:rgba(255,255,255,.75);
  font-weight:700;font-size:13px;
}
.tabBtn.is-active{
  background:rgba(255,255,255,.075);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
}
.tabPanels .tabPanel{display:none;}
.tabPanels .tabPanel.is-active{display:block;}

.panelGrid{display:grid;gap:14px;grid-template-columns:1fr;}
@media(min-width:920px){.panelGrid{grid-template-columns:1fr 1fr;gap:22px;align-items:center;}}
.panelText .badge{
  display:inline-block;
  padding:6px 10px;border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;font-weight:800;
  margin-bottom:10px;
}
.panelText .badge--gold{
  background:rgba(213,170,74,.16);
  border-color:rgba(213,170,74,.30);
  color:rgba(255,225,160,.95);
}
.panelText h3{margin:0 0 10px;font-size:20px;letter-spacing:-.2px;}
.checkList{margin:0;padding-left:18px;color:rgba(255,255,255,.86);}
.checkList li{margin:7px 0;}
.panelMedia img{width:100%;height:auto;display:block;border-radius:18px;border:1px solid rgba(255,255,255,.06);}
.panelMedia--cards{position:relative;min-height:240px;}
.panelMedia--cards .cardImg{
  width:min(520px,100%);
  border-radius:22px;
  border:0;
  filter:drop-shadow(0 24px 44px rgba(0,0,0,.55));
  background:transparent;
}
@media(min-width:920px){
  .panelMedia--cards{min-height:320px;}
}
.cardImg--tilt{transform:rotate(-10deg) translateY(8px);}
.cardImg--flat{position:absolute;right:0;bottom:0;transform:rotate(6deg);max-width:460px;opacity:.95;}

.section--global .globalGrid{display:grid;gap:16px;grid-template-columns:1fr;}
@media(min-width:920px){.section--global .globalGrid{grid-template-columns:1fr 1fr;gap:22px;align-items:center;}}
.globalMedia img{width:100%;height:auto;display:block;opacity:.95;filter:drop-shadow(0 20px 44px rgba(0,0,0,.45));}
.miniList{margin:12px 0 0;padding-left:18px;color:rgba(255,255,255,.84);}
.miniList li{margin:7px 0;}
