/* ============================================================
   preview-v2/tokens.css — 다잇다-보험 리뉴얼 시안 (Editorial Light + Neon Hero)
   벤치마크: 다-잇다 인터넷.랜탈 (daitda.life)
   ============================================================ */

:root {
  /* ── 배경 ── */
  --bg-base:     #ffffff;
  --bg-section:  #f7f9fc;
  --bg-soft:     #f8fafc;
  --bg-card:     #ffffff;

  /* ── 텍스트 ── */
  --fg:          #0b1220;
  --fg-soft:     #475569;
  --fg-muted:    #94a3b8;
  --fg-invert:   #ffffff;

  /* ── 액센트 (네온) ── */
  --neon-blue:   #0099ff;
  --neon-pink:   #ff1a6d;
  --neon-purple: #8b3dff;

  /* ── 그라디언트 ── */
  --grad-blue:   linear-gradient(135deg, #0099ff 0%, #6366f1 100%);
  --grad-pink:   linear-gradient(135deg, #ff1a6d 0%, #fb7185 100%);
  --grad-brand:  linear-gradient(135deg, #0099ff 0%, #8b3dff 50%, #ff1a6d 100%);
  --grad-hero:   linear-gradient(160deg, #e8f4ff 0%, #fdf4ff 55%, #fff0f5 100%);
  --grad-cta:    linear-gradient(135deg, #0b1220 0%, #1a1f2b 100%);

  /* ── 보더 ── */
  --line:        #e8eaee;
  --line-soft:   #eef0f4;
  --border-card: 1px solid var(--line);

  /* ── 그림자 ── */
  --shadow-sm:   0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:   0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg:   0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-neon: 0 10px 40px rgba(0, 153, 255, 0.25), 0 6px 24px rgba(255, 26, 109, 0.18);

  /* ── 폰트 ── */
  --font-base:  'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-brand: 'Outfit', 'Pretendard', sans-serif;

  /* ── 반경 ── */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* ── 모션 ── */
  --ease:        cubic-bezier(0.32, 0.72, 0, 1);
  --trans-fast:  0.18s var(--ease);
  --trans-base:  0.28s var(--ease);
  --trans-slow:  0.5s  var(--ease);

  /* ── 레이아웃 ── */
  --container:   1200px;
  --section-y:   clamp(44px, 5vw, 72px);

  /* ── z-index ── */
  --z-header:   1000;
  --z-floating: 998;
  --z-modal:    1100;
}

/* ── 리셋 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base);
  background: var(--bg-base);
  color: var(--fg);
  line-height: 1.6;
  font-feature-settings: 'ss02', 'ss03';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: 0; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ── 컨테이너 ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── 공통 ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-blue);
  background: rgba(0,153,255,0.07);
  border: 1px solid rgba(0,153,255,0.18);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
}
.eyebrow.pink { color: var(--neon-pink); background: rgba(255,26,109,0.07); border-color: rgba(255,26,109,0.22); }

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.section-title .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--fg-soft);
  max-width: 640px;
  margin-top: 14px;
}
.section-head { text-align: center; margin-bottom: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.section-head .section-desc { margin: 0 auto; }

/* ── 버튼 ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform var(--trans-base), box-shadow var(--trans-base), background var(--trans-base), color var(--trans-base);
  white-space: nowrap;
  font-family: var(--font-base);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  padding: 14px 26px;
  font-size: 15px;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-neon {
  background: var(--grad-brand);
  color: #fff;
  padding: 14px 26px;
  font-size: 15px;
  box-shadow: var(--shadow-neon);
}
.btn-ghost {
  background: #fff;
  color: var(--fg);
  border: 1px solid var(--line);
  padding: 13px 24px;
  font-size: 15px;
}
.btn-ghost:hover { border-color: var(--neon-blue); color: var(--neon-blue); }

/* ── 카드 (평면) ── */
.card {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--trans-base), border-color var(--trans-base), box-shadow var(--trans-base);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,153,255,0.45);
  box-shadow: var(--shadow-md);
}

/* ── 상단 알림바 ── */
.notice-bar {
  background: var(--grad-cta);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.notice-bar .accent { color: #ffd58a; font-weight: 700; }
.notice-bar a { text-decoration: underline; text-underline-offset: 3px; margin-left: 8px; }

/* ── 헤더 ── */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-brand); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.brand .logo-mark {
  width: 30px; height: 30px;
  background: var(--grad-brand);
  border-radius: 9px;
  box-shadow: var(--shadow-neon);
  position: relative;
}
.brand .logo-mark::after {
  content: ''; position: absolute; inset: 6px; background: #fff; border-radius: 5px;
}
.brand .grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14.5px; font-weight: 600; color: var(--fg-soft); transition: color var(--trans-fast); position: relative; padding: 6px 2px; }
.nav a:hover { color: var(--neon-blue); }
.nav a.nav-active { color: var(--fg); }
.nav a.nav-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 3px; background: var(--grad-brand);
  border-radius: 3px 3px 0 0;
}
.header-cta { display: flex; align-items: center; gap: 10px; }

/* ── Hero 슬라이드 ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vh, 420px);
  overflow: hidden;
}
.hero-slider .swiper, .hero-slider .swiper-wrapper, .hero-slider .swiper-slide { height: 100%; }
.hero-slide {
  position: relative;
  height: 100%;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-slide .slide-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide .slide-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.30) 50%, rgba(11,18,32,0.10) 100%);
  z-index: 1;
}
.hero-slide .slide-orb {
  position: absolute; border-radius: 50%; filter: blur(2px);
  z-index: 0;
}

/* 슬라이드 1 — Brand (실제 배너 이미지) */
.hero-slide.s1 .slide-bg { background: url('banners/slide-1.png') center/cover no-repeat #0b1220; }
.hero-slide.s1 .slide-orb { display: none; }

/* 슬라이드 2 — Comparison */
.hero-slide.s2 .slide-bg { background: url('banners/slide-2.png') center/cover no-repeat #0a4d68; }
.hero-slide.s2 .slide-orb { display: none; }

/* 슬라이드 3 — Region */
.hero-slide.s3 .slide-bg { background: url('banners/slide-3.png') center/cover no-repeat #1a1f2b; }
.hero-slide.s3 .slide-orb { display: none; }

.hero-slide .slide-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  color: #fff;
}
.hero-slide .slide-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-slide .slide-title {
  font-family: var(--font-brand);
  margin-top: 22px;
  font-size: clamp(32px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 820px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-slide .slide-desc {
  margin-top: 18px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 620px;
  color: rgba(255,255,255,0.88);
}
.hero-slide .slide-cta { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-slide .slide-cta .btn-light {
  background: #fff; color: var(--fg);
  padding: 14px 26px; font-size: 15px; font-weight: 800;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--trans-base);
}
.hero-slide .slide-cta .btn-light:hover { transform: translateY(-2px); }
.hero-slide .slide-cta .btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 13px 24px; font-size: 15px; font-weight: 700;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--trans-base);
}
.hero-slide .slide-cta .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* Swiper 컨트롤 */
.hero-slider .swiper-pagination {
  bottom: 28px !important;
  text-align: left;
  padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
}
.hero-slider .swiper-pagination-bullet {
  width: 32px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  transition: all var(--trans-base);
}
.hero-slider .swiper-pagination-bullet-active { background: #fff; width: 56px; }

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  margin-top: -24px;
  transition: all var(--trans-base);
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.35); }
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after { font-size: 16px; font-weight: 800; }
.hero-slider .swiper-button-prev { left: 24px; }
.hero-slider .swiper-button-next { right: 24px; }

.hero-slide .slide-num {
  position: absolute; right: 24px; top: 24px; z-index: 3;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-brand);
  font-size: 13px;
  letter-spacing: 0.18em;
}
.hero-slide .slide-num .cur { color: #fff; font-size: 26px; font-weight: 800; }

/* ── 섹션 공통 ── */
.section { padding: var(--section-y) 0; }
.section.soft { background: var(--bg-section); }

/* ── 퀵 액세스 ── */
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-card { display: flex; flex-direction: column; gap: 10px; }
.quick-card .icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,153,255,0.10), rgba(255,26,109,0.10));
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--neon-blue); font-size: 22px;
}
.quick-card .title { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.quick-card .desc { font-size: 13.5px; color: var(--fg-soft); }
.quick-card .arrow { margin-top: auto; color: var(--neon-blue); font-weight: 700; font-size: 14px; }

/* ── 설계사 그리드 ── */
.region-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.region-tab {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-soft);
  background: #fff;
  transition: all var(--trans-base);
}
.region-tab:hover { border-color: var(--neon-blue); color: var(--neon-blue); }
.region-tab.active { background: var(--grad-cta); color: #fff; border-color: transparent; }
.agent-search-wrap { max-width: 480px; margin: 0 auto 36px; position: relative; }
.agent-search-wrap input {
  width: 100%; padding: 13px 18px 13px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14.5px; outline: none;
  background: #fff;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}
.agent-search-wrap input:focus { border-color: var(--neon-blue); box-shadow: 0 0 0 4px rgba(0,153,255,0.10); }
.agent-search-wrap .ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--fg-muted); }
.agents-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.agent-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px;
  transition: transform var(--trans-base), border-color var(--trans-base), box-shadow var(--trans-base);
  position: relative;
  overflow: hidden;
}
.agent-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-brand);
  opacity: 0; transition: opacity var(--trans-base);
}
.agent-card:hover { transform: translateY(-4px); border-color: rgba(0,153,255,0.45); box-shadow: var(--shadow-lg); }
.agent-card:hover::before { opacity: 1; }
.agent-photo {
  width: 76px; height: 76px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,0.10);
}
.agent-photo.fallback { background: var(--grad-cta); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-weight: 800; font-size: 24px; }
.agent-name { font-family: var(--font-brand); font-weight: 800; font-size: 17px; letter-spacing: -0.015em; margin-top: 6px; }
.agent-name .title-inline { display: inline-block; font-family: var(--font-base); font-size: 11.5px; color: var(--fg-soft); font-weight: 600; margin-left: 4px; }
.agent-reg-no { font-size: 11px; color: var(--fg-muted); }
.agent-region { font-size: 12px; color: var(--fg-soft); margin-top: 2px; }
.agent-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-top: 6px; }
.agent-tag { font-size: 11px; padding: 3px 9px; background: var(--bg-section); border: 1px solid var(--line); border-radius: var(--radius-pill); color: var(--fg-soft); font-weight: 600; }
.agent-cta {
  margin-top: 12px;
  font-size: 13px; font-weight: 700; color: var(--neon-blue);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--trans-base);
}
.agent-card:hover .agent-cta { gap: 8px; }

/* ── 보험 카테고리 ── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { position: relative; padding: 28px 24px; cursor: pointer; }
.product-card .ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(0,153,255,0.12), rgba(139,61,255,0.10));
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--neon-blue);
  margin-bottom: 16px;
  font-size: 24px;
}
.product-card .name { font-family: var(--font-brand); font-weight: 800; font-size: 19px; letter-spacing: -0.015em; }
.product-card .desc { margin-top: 8px; font-size: 14px; color: var(--fg-soft); line-height: 1.55; }
.product-card .link { margin-top: 16px; color: var(--neon-blue); font-size: 13.5px; font-weight: 700; }

/* ── 보험사 로고 그리드 ── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.logo-card {
  aspect-ratio: 16 / 9;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--trans-base), border-color var(--trans-base), box-shadow var(--trans-base);
  cursor: pointer;
  padding: 8px;
}
.logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,153,255,0.4);
  box-shadow: var(--shadow-md);
}
.logo-card .logo-text {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--fg-soft);
  letter-spacing: -0.015em;
  text-align: center;
  line-height: 1.3;
}
.logo-card:hover .logo-text { color: var(--fg); }
.logo-card img {
  max-width: 84%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(25%);
  opacity: 0.86;
  transition: filter var(--trans-base), opacity var(--trans-base);
}
.logo-card img.wide {
  max-width: 100%;
  max-height: 68px;
}
.logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@media (max-width: 1024px) {
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .logo-card .logo-text { font-size: 12px; }
}

/* ── 후기 ── */
.reviews-wrap { position: relative; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 22px;
  height: 100%;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { color: #f59e0b; font-size: 14px; }
.review-card .body { font-size: 14.5px; color: var(--fg); line-height: 1.7; flex: 1; }
.review-card .meta { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px dashed var(--line); }
.review-card .meta .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-brand); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-family: var(--font-brand); font-size: 14px; }
.review-card .meta .name { font-weight: 700; font-size: 13.5px; }
.review-card .meta .date { font-size: 12px; color: var(--fg-muted); }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 20px 22px; font-size: 15.5px; font-weight: 700; color: var(--fg); display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: background var(--trans-fast); }
.faq-q:hover { background: var(--bg-section); }
.faq-q .toggle { font-size: 22px; color: var(--neon-blue); transition: transform var(--trans-base); }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 22px; color: var(--fg-soft); font-size: 14.5px; line-height: 1.75; border-top: 1px dashed var(--line); padding-top: 16px; }
.faq-item.open .faq-a { display: block; }

/* ── 하단 CTA 박스 ── */
.cta-band {
  background: var(--grad-cta);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  color: #fff;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(420px 220px at 10% 10%, rgba(0,153,255,0.4), transparent 70%),
    radial-gradient(420px 220px at 90% 90%, rgba(255,26,109,0.4), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { background: rgba(255,255,255,0.10); color: #aee0ff; border-color: rgba(255,255,255,0.18); }
.cta-band .title { font-family: var(--font-brand); font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.18; letter-spacing: -0.022em; margin-top: 14px; }
.cta-band .desc { margin-top: 14px; color: rgba(255,255,255,0.78); font-size: 15px; max-width: 460px; }
.cta-band .actions { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band .actions .btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.cta-band .actions .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ── Footer ── */
.site-footer { background: #0b1220; color: rgba(255,255,255,0.72); padding: 56px 0 32px; font-size: 13.5px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand { color: #fff; font-family: var(--font-brand); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 14px; }
.footer-desc { line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 8px; }
.footer-col a:hover { color: var(--neon-blue); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.5); }

/* ── 플로팅 CTA ── */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: var(--z-floating);
  background: var(--grad-brand);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-neon);
  transition: transform var(--trans-base);
}
.fab:hover { transform: translateY(-3px) scale(1.03); }
.fab .pulse { width: 8px; height: 8px; background: #aee0ff; border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.6); } }

/* ── 시안 워터마크 ── */
.preview-badge {
  position: fixed; left: 18px; bottom: 18px; z-index: 1500;
  background: rgba(11, 18, 32, 0.92);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.preview-badge .dot { width: 6px; height: 6px; background: var(--neon-pink); border-radius: 50%; box-shadow: 0 0 8px var(--neon-pink); }

/* ============================================================
   페이지 — 회사 소개 (about.html)
   ============================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .crumb { font-size: 12px; color: var(--fg-soft); letter-spacing: 0.06em; }
.page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-top: 10px;
}
.page-hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { margin-top: 14px; color: var(--fg-soft); font-size: clamp(15px, 1.4vw, 17px); max-width: 720px; }

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform var(--trans-base), border-color var(--trans-base);
}
.fact-card:hover { transform: translateY(-3px); border-color: rgba(0,153,255,0.4); }
.fact-card .label { font-size: 12.5px; color: var(--fg-soft); font-weight: 500; letter-spacing: 0.02em; }
.fact-card .value { font-family: var(--font-brand); font-size: 30px; font-weight: 800; letter-spacing: -0.022em; }
.fact-card .value.grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fact-card .value .unit { font-size: 14px; color: var(--fg-soft); font-weight: 700; margin-left: 2px; }
.fact-card .meta { font-size: 12.5px; color: var(--fg-muted); margin-top: 2px; }

.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promise-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative; overflow: hidden;
  transition: transform var(--trans-base), border-color var(--trans-base);
}
.promise-card::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans-base);
}
.promise-card:hover { transform: translateY(-4px); border-color: rgba(0,153,255,0.4); }
.promise-card:hover::before { transform: scaleX(1); }
.promise-card .num {
  font-family: var(--font-brand);
  font-size: 13px; font-weight: 800; color: var(--neon-blue);
  letter-spacing: 0.14em;
}
.promise-card h3 {
  font-family: var(--font-brand);
  font-size: 22px; font-weight: 800; line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.promise-card p { color: var(--fg-soft); font-size: 14.5px; line-height: 1.7; margin-top: 12px; }

.legal-table {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
.legal-table dl { display: grid; grid-template-columns: 180px 1fr; }
.legal-table dt, .legal-table dd { padding: 16px 22px; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.legal-table dt { background: var(--bg-section); color: var(--fg-soft); font-weight: 700; }
.legal-table dd { color: var(--fg); }
.legal-table dl > *:nth-last-child(-n+2) { border-bottom: 0; }
.legal-table .needs-fill {
  background: linear-gradient(90deg, rgba(255,193,7,0.14), rgba(255,193,7,0.04));
  color: #b45309;
  font-weight: 600;
  position: relative;
}
.legal-table .needs-fill::before {
  content: '✏️ '; opacity: 0.7;
}

/* ============================================================
   페이지 — 고객 후기 (reviews.html)
   ============================================================ */
.review-summary {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.review-summary .big-score {
  display: flex; flex-direction: column; align-items: center; padding-right: 36px; border-right: 1px solid var(--line);
}
.review-summary .big-score .num {
  font-family: var(--font-brand);
  font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.review-summary .big-score .stars { color: #f59e0b; font-size: 18px; margin-top: 8px; }
.review-summary .big-score .total { font-size: 13px; color: var(--fg-soft); margin-top: 6px; }

.review-bars { display: grid; gap: 8px; }
.review-bar { display: grid; grid-template-columns: 32px 1fr 40px; align-items: center; gap: 10px; font-size: 13px; }
.review-bar .lbl { color: var(--fg-soft); }
.review-bar .track { height: 8px; background: var(--bg-section); border-radius: 999px; overflow: hidden; position: relative; }
.review-bar .fill { height: 100%; background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink)); border-radius: 999px; transition: width 0.6s var(--ease); }
.review-bar .cnt { text-align: right; color: var(--fg-soft); font-variant-numeric: tabular-nums; }

.review-toolbar {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: space-between;
  margin: 28px 0 18px;
}
.review-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.review-filter {
  padding: 7px 16px; border: 1px solid var(--line); background: #fff;
  border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 600; color: var(--fg-soft);
  transition: all var(--trans-base); cursor: pointer;
}
.review-filter:hover { border-color: var(--neon-blue); color: var(--neon-blue); }
.review-filter.active { background: var(--grad-cta); color: #fff; border-color: transparent; }
.review-sort {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-size: 13.5px; background: #fff; cursor: pointer;
}

.reviews-board {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.review-card2 {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--trans-base), border-color var(--trans-base);
}
.review-card2:hover { transform: translateY(-3px); border-color: rgba(0,153,255,0.4); box-shadow: var(--shadow-md); }
.review-card2 .top { display: flex; align-items: center; justify-content: space-between; }
.review-card2 .stars { color: #f59e0b; font-size: 14px; }
.review-card2 .date { font-size: 12px; color: var(--fg-muted); }
.review-card2 .body { font-size: 14.5px; line-height: 1.7; color: var(--fg); flex: 1; }
.review-card2 .bottom { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px dashed var(--line); }
.review-card2 .avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-weight: 800; font-size: 13px; }
.review-card2 .author { font-size: 13px; font-weight: 700; }
.review-card2 .agent-pill {
  margin-left: auto;
  font-size: 11.5px; font-weight: 700;
  background: var(--bg-section); padding: 4px 10px; border-radius: 999px;
  color: var(--fg-soft); border: 1px solid var(--line);
}
.review-card2 .photo {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 10px;
  background: var(--bg-section);
}

.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 36px; }
.page-btn {
  min-width: 38px; height: 38px; padding: 0 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  font-size: 13.5px; font-weight: 600;
  color: var(--fg-soft); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--trans-base);
}
.page-btn:hover:not(:disabled) { border-color: var(--neon-blue); color: var(--neon-blue); }
.page-btn.active { background: var(--grad-cta); color: #fff; border-color: transparent; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* 후기 작성 모달 */
.modal-backdrop {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(11,18,32,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
  animation: fadeIn 0.18s var(--ease);
}
.modal-backdrop.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: var(--radius-xl);
  width: 100%; max-width: 520px; max-height: 90vh; overflow: auto;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.modal h3 { font-family: var(--font-brand); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.modal .step { font-size: 12.5px; color: var(--neon-blue); font-weight: 700; letter-spacing: 0.14em; }
.modal label { display: block; font-size: 13px; font-weight: 700; margin: 18px 0 8px; color: var(--fg); }
.modal input, .modal select, .modal textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color var(--trans-base), box-shadow var(--trans-base);
}
.modal input:focus, .modal select:focus, .modal textarea:focus {
  border-color: var(--neon-blue); box-shadow: 0 0 0 4px rgba(0,153,255,0.10);
}
.modal textarea { resize: vertical; min-height: 100px; }
.modal .star-input { display: flex; gap: 4px; font-size: 30px; color: var(--line); cursor: pointer; }
.modal .star-input span { cursor: pointer; transition: color var(--trans-fast), transform var(--trans-fast); }
.modal .star-input span:hover { transform: scale(1.1); }
.modal .star-input span.active { color: #f59e0b; }
.modal .photo-drop {
  border: 1.5px dashed var(--line); border-radius: 12px;
  padding: 24px; text-align: center; color: var(--fg-muted); font-size: 13px;
  cursor: pointer; transition: border-color var(--trans-base), background var(--trans-base);
}
.modal .photo-drop:hover { border-color: var(--neon-blue); background: var(--bg-section); }
.modal .footer { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; }
.modal .btn-cancel { background: transparent; color: var(--fg-soft); padding: 12px 22px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 700; border: 1px solid var(--line); }
.modal .btn-submit { background: var(--grad-brand); color: #fff; padding: 12px 26px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 800; box-shadow: var(--shadow-neon); }

.fab-write {
  position: fixed; right: 24px; bottom: 24px; z-index: var(--z-floating);
  background: var(--grad-brand); color: #fff;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-neon);
  border: 0; cursor: pointer;
  transition: transform var(--trans-base);
}
.fab-write:hover { transform: translateY(-3px) scale(1.03); }

/* ============================================================
   페이지 — 설계사 개인 (agent.html?s=slug)
   ============================================================ */
.agent-hero {
  background: var(--grad-hero);
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.agent-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(560px 280px at 5% 20%, rgba(0,153,255,0.10), transparent 70%),
    radial-gradient(480px 240px at 95% 80%, rgba(255,26,109,0.10), transparent 70%);
  pointer-events: none;
}
.agent-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.agent-profile { display: flex; flex-direction: column; gap: 14px; }
.agent-crumb { font-size: 12.5px; color: var(--fg-soft); letter-spacing: 0.06em; }
.agent-crumb a { color: var(--fg-soft); }
.agent-crumb a:hover { color: var(--neon-blue); }
.agent-profile-top { display: flex; gap: 20px; align-items: center; }
.agent-profile-photo {
  width: 220px; height: 280px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  border: 4px solid #fff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.22);
  flex-shrink: 0;
}
.agent-profile-photo.fallback {
  background: var(--grad-brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-brand);
  font-weight: 800; font-size: 80px;
}
.agent-profile h1 {
  font-family: var(--font-brand);
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.agent-profile h1 .title-inline {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 0.5em;
  color: var(--fg-soft);
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}
.agent-profile .reg-no { font-size: 13px; color: var(--fg-muted); margin-top: 4px; font-variant-numeric: tabular-nums; }
.agent-region-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.agent-region-pill {
  font-size: 13px; font-weight: 700;
  padding: 6px 14px;
  background: rgba(0,153,255,0.10);
  border: 1px solid rgba(0,153,255,0.22);
  color: var(--neon-blue);
  border-radius: var(--radius-pill);
}
.agent-motto {
  margin-top: 12px;
  font-family: var(--font-brand);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.018em;
  color: var(--fg);
}
.agent-quick { display: flex; gap: 22px; margin-top: 16px; }
.agent-quick .item .lbl { font-size: 11.5px; color: var(--fg-soft); letter-spacing: 0.04em; }
.agent-quick .item .val { font-family: var(--font-brand); font-weight: 800; font-size: 18px; margin-top: 2px; }

/* inline 상담 폼 */
.consult-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.consult-card h3 {
  font-family: var(--font-brand);
  font-size: 19px; font-weight: 800; letter-spacing: -0.02em;
}
.consult-card .lead {
  font-size: 13px; color: var(--fg-soft); margin-top: 4px; line-height: 1.55;
}
.consult-card label {
  display: block; font-size: 12.5px; font-weight: 700;
  margin: 14px 0 6px; color: var(--fg);
}
.consult-card input, .consult-card select, .consult-card textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; font-family: inherit;
  outline: none;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}
.consult-card input:focus, .consult-card select:focus, .consult-card textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 4px rgba(0,153,255,0.10);
}
.consult-card textarea { resize: vertical; min-height: 70px; }
.consult-card .agree {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 14px; font-size: 12.5px; color: var(--fg-soft); line-height: 1.5;
}
.consult-card .agree input { width: auto; margin-top: 3px; }
.consult-card .submit-btn {
  width: 100%; margin-top: 16px;
  background: var(--grad-brand); color: #fff;
  padding: 14px; border: 0; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 15px;
  box-shadow: var(--shadow-neon);
  cursor: pointer;
  transition: transform var(--trans-base);
}
.consult-card .submit-btn:hover { transform: translateY(-2px); }

/* 스토리 섹션 */
.story-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.story-quote {
  position: relative;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0,153,255,0.06), rgba(255,26,109,0.06));
  border-left: 4px solid;
  border-image: var(--grad-brand) 1;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.story-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 16px;
  font-family: var(--font-brand);
  font-size: 100px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0.4;
}
.story-quote p {
  font-family: var(--font-brand);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.018em;
  color: var(--fg);
  position: relative;
}
.story-body {
  font-size: 15.5px; line-height: 1.85; color: var(--fg);
  white-space: pre-line;
}
.story-body h3 {
  font-family: var(--font-brand);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800; letter-spacing: -0.022em;
  margin-bottom: 14px;
}

/* 전문 영역 카드 */
.specialty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.specialty-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform var(--trans-base), border-color var(--trans-base);
}
.specialty-card:hover { transform: translateY(-3px); border-color: rgba(0,153,255,0.4); }
.specialty-card .ico {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(0,153,255,0.12), rgba(139,61,255,0.10));
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.specialty-card .name { font-family: var(--font-brand); font-weight: 800; font-size: 17px; letter-spacing: -0.015em; }
.specialty-card .desc { font-size: 13.5px; color: var(--fg-soft); line-height: 1.55; }

/* 다른 설계사 추천 (작은 카드) */
.others-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

@media (max-width: 1024px) {
  .agent-hero-inner { grid-template-columns: 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 24px; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .others-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .agent-profile-top { flex-direction: column; align-items: center; gap: 18px; text-align: center; }
  .agent-profile-photo { width: 200px; height: 250px; }
  .agent-profile-photo.fallback { font-size: 72px; }
  .agent-region-pills { justify-content: center; }
  .specialty-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .specialty-card { padding: 14px 10px; }
  .specialty-card .ico { width: 32px; height: 32px; font-size: 16px; }
  .specialty-card .name { font-size: 14px; }
  .specialty-card .desc { font-size: 11.5px; line-height: 1.4; }
  .others-grid { grid-template-columns: 1fr 1fr; }
  .reviews-board { grid-template-columns: 1fr; }
}

/* ============================================================
   페이지 — 광고 랜딩 (lp.html)
   ============================================================ */
.lp-hero {
  position: relative;
  background: var(--grad-hero);
  padding: clamp(48px, 6vw, 88px) 0 clamp(64px, 7vw, 100px);
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(720px 360px at 8% 12%, rgba(0,153,255,0.16), transparent 70%),
    radial-gradient(620px 320px at 92% 88%, rgba(255,26,109,0.14), transparent 72%);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,26,109,0.10);
  border: 1px solid rgba(255,26,109,0.25);
  color: #be185d;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.06em;
}
.lp-h1 {
  font-family: var(--font-brand);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 18px;
  color: var(--fg);
}
.lp-h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-sub {
  margin-top: 18px;
  font-size: clamp(15.5px, 1.5vw, 18px);
  color: var(--fg-soft);
  line-height: 1.7;
  max-width: 560px;
}
.lp-check { margin-top: 22px; display: grid; gap: 10px; }
.lp-check li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--fg); }
.lp-check .ck {
  width: 24px; height: 24px; flex: 0 0 24px;
  background: var(--grad-blue); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px;
  box-shadow: 0 3px 12px rgba(0,153,255,0.28);
}
.lp-trust { margin-top: 24px; display: flex; gap: 22px; flex-wrap: wrap; }
.lp-trust .it .lbl { font-size: 12px; color: var(--fg-soft); }
.lp-trust .it .val { font-family: var(--font-brand); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.lp-trust .it .val.grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lp-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lp-form-card .badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-neon);
}
.lp-form-card h2 {
  font-family: var(--font-brand);
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
}
.lp-form-card .lead {
  font-size: 13px; color: var(--fg-soft); margin-top: 6px; line-height: 1.55;
}
.lp-form-card label {
  display: block; font-size: 12.5px; font-weight: 700;
  margin: 14px 0 6px; color: var(--fg);
}
.lp-form-card input, .lp-form-card select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 14.5px; font-family: inherit;
  outline: none;
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}
.lp-form-card input:focus, .lp-form-card select:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 4px rgba(0,153,255,0.10);
}
.lp-form-card .agree {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 16px; font-size: 12.5px; color: var(--fg-soft); line-height: 1.5;
}
.lp-form-card .agree input { width: auto; margin-top: 3px; }
.lp-form-card .submit-btn {
  width: 100%; margin-top: 18px;
  background: var(--grad-brand); color: #fff;
  padding: 16px; border: 0; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow-neon);
  cursor: pointer;
  transition: transform var(--trans-base);
}
.lp-form-card .submit-btn:hover { transform: translateY(-2px); }
.lp-form-card .small-trust {
  margin-top: 12px;
  text-align: center;
  font-size: 12px; color: var(--fg-muted);
}

.lp-msg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-msg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: transform var(--trans-base), border-color var(--trans-base);
}
.lp-msg-card:hover { transform: translateY(-4px); border-color: rgba(0,153,255,0.4); }
.lp-msg-card .ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,153,255,0.14), rgba(139,61,255,0.10));
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.lp-msg-card h3 {
  font-family: var(--font-brand);
  font-size: 21px; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.lp-msg-card p {
  font-size: 14.5px; color: var(--fg-soft); line-height: 1.75;
  margin-top: 10px;
}

.lp-review-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.lp-final-cta {
  background: var(--grad-cta);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(420px 220px at 10% 10%, rgba(0,153,255,0.4), transparent 70%),
    radial-gradient(420px 220px at 90% 90%, rgba(255,26,109,0.4), transparent 70%);
  pointer-events: none;
}
.lp-final-cta > * { position: relative; z-index: 1; }
.lp-final-cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.lp-final-cta h2 {
  font-family: var(--font-brand);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.022em;
}
.lp-final-cta .desc { margin-top: 14px; color: rgba(255,255,255,0.78); font-size: 15px; max-width: 460px; }
.lp-final-cta .form2-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
}
.lp-final-cta .form2-card .row { display: grid; gap: 10px; }
.lp-final-cta .form2-card input, .lp-final-cta .form2-card select {
  padding: 12px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.lp-final-cta .form2-card input::placeholder { color: rgba(255,255,255,0.55); }
.lp-final-cta .form2-card select option { color: #000; }
.lp-final-cta .form2-card .btn-w {
  background: #fff; color: var(--fg);
  font-weight: 800; padding: 13px 22px;
  border: 0; border-radius: var(--radius-pill);
  font-size: 14.5px; cursor: pointer;
  transition: transform var(--trans-base);
}
.lp-final-cta .form2-card .btn-w:hover { transform: translateY(-2px); }

.lp-disclaim {
  background: var(--bg-section);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.lp-disclaim p {
  max-width: 880px; margin: 0 auto;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* LP 보조 CTA (Hero 폼 하단) */
.lp-alt-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 14px;
}
.lp-alt-actions a {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 13.5px;
  border: 1px solid var(--line);
  background: #fff; color: var(--fg);
  transition: all var(--trans-base);
}
.lp-alt-actions a:hover { transform: translateY(-2px); }
.lp-alt-actions .tel { border-color: rgba(0,153,255,0.35); color: var(--neon-blue); }
.lp-alt-actions .tel:hover { background: rgba(0,153,255,0.06); }
.lp-alt-actions .kkt { border-color: #f7d000; background: #fee500; color: #391b1b; }
.lp-alt-actions .kkt:hover { background: #ffea1c; }

/* 오늘 카운터 (Hero 상단) */
.live-counter {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 700;
  color: var(--fg);
}
.live-counter .pulse-dot {
  width: 8px; height: 8px; background: #10b981; border-radius: 50%;
  position: relative;
}
.live-counter .pulse-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #10b981; opacity: 0.5;
  animation: pulse-ring 1.8s ease-in-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2.4); opacity: 0; } }
.live-counter .grad-num {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* inline 검증 */
.field-err {
  font-size: 11.5px; color: #dc2626;
  margin-top: 4px;
  min-height: 16px;
  display: none;
}
.field-err.show { display: block; }
.lp-form-card input.invalid, .lp-final-cta .form2-card input.invalid {
  border-color: #dc2626 !important;
}

/* 모바일 하단 sticky CTA 바 */
.mobile-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: var(--z-floating);
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: 1fr 44px 44px;
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.mobile-sticky-cta a, .mobile-sticky-cta button {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 800; font-size: 14.5px;
  text-decoration: none;
  border: 0; cursor: pointer;
}
.mobile-sticky-cta .main-cta {
  background: var(--grad-brand); color: #fff;
  box-shadow: var(--shadow-neon);
  padding: 12px 14px;
}
.mobile-sticky-cta .tel-btn { background: var(--bg-section); color: var(--neon-blue); font-size: 18px; }
.mobile-sticky-cta .kkt-btn { background: #fee500; color: #391b1b; font-size: 18px; }
@media (max-width: 768px) {
  .mobile-sticky-cta { display: grid; }
  body { padding-bottom: 68px; }
  .site-footer { padding-bottom: 76px; }
}

@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-msg-grid { grid-template-columns: 1fr; }
  .lp-review-list { grid-template-columns: 1fr 1fr; }
  .lp-final-cta-grid { grid-template-columns: 1fr; text-align: center; }
  .lp-final-cta .desc { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .lp-review-list { grid-template-columns: 1fr; }
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin: 0 auto; max-width: 420px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .actions { justify-content: center; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .glass-card.gc1 { width: 180px; padding: 14px 16px; }
  .glass-card.gc2 { width: 190px; padding: 14px 16px; }
  .hero-title { font-size: 36px; }
  .fab span.label { display: none; }
  .notice-grid { grid-template-columns: 1fr; gap: 24px; }
  .legal-modal-box { width: 92%; max-height: 88vh; padding: 28px 22px; }
}

/* ════════════════════════════════════════
   Hero (텍스트 + 지도 + 폼) — 옅은 네온 그라데이션 톤
   ════════════════════════════════════════ */
.hero-mono {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(244, 114, 182, 0.25), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(99, 102, 241, 0.25), transparent 55%),
    linear-gradient(135deg, #EEF2FF 0%, #FCE7F3 100%);
  color: #1F2937;
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-orbs .orb {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
}
.hero-bg-orbs .o1 {
  top: -80px; left: -60px;
  background: radial-gradient(circle, #818CF8, transparent 70%);
}
.hero-bg-orbs .o2 {
  bottom: -100px; right: -60px;
  background: radial-gradient(circle, #F472B6, transparent 70%);
}
.hero-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
  z-index: 2;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  justify-content: center;
}
.hero-left .hero-text { flex: 0 0 auto; }
.hero-left .hero-map-inline { flex: 0 0 auto; }
.hero-text { z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-brand, 'Outfit', sans-serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #6366F1;
  padding: 6px 14px;
  border: 1.5px solid rgba(99, 102, 241, 0.35);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-brand, 'Outfit', sans-serif);
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 900;
  letter-spacing: 0em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #0E1220;
}
.hero-title .grad-text {
  background: linear-gradient(120deg, #6366F1 0%, #A855F7 50%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #4B5563;
  margin: 0 0 28px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-actions .btn {
  padding: 13px 22px;
  font-size: 14.5px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 460px;
  padding-top: 22px;
  border-top: 1px solid rgba(99, 102, 241, 0.18);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 3px; }
.hero-meta strong {
  font-family: var(--font-brand, 'Outfit', sans-serif);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1E1B4B;
}
.hero-meta strong small {
  font-size: 16px;
  color: #6366F1;
  margin-left: 2px;
}
.hero-meta span {
  font-size: 12px;
  color: #6B7280;
  letter-spacing: 0.02em;
}

/* 구분선 */
.hero-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), transparent);
  margin: 0;
}

/* 좌측 안 — 지도 누끼 (박스 없음, hero 배경 위에 떠 있음) */
.hero-map-inline {
  position: relative;
  background: transparent;
  padding: 0;
  margin-top: -36px;
  margin-bottom: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-map-inline img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(99, 102, 241, 0.25)) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.08));
}

/* 서브 문구 */
.hero-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  max-width: 580px;
}
.hero-sub-row1 {
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.02em;
}
.hero-sub-row2 {
  font-family: var(--font-brand, 'Outfit', sans-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #0E1220;
}
.hero-sub-row2 strong {
  font-weight: 900;
}
.hero-sub-row2 strong.grad-text,
.hero-sub-row2 .grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 우측 폼 카드 — 좌측 전체 높이만큼 stretch */
.hero-form-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.hero-form-card .hero-form { flex: 1 1 auto; display: flex; flex-direction: column; }
.hero-form-card .hero-form .btn-block { margin-top: auto; }
/* Hero 폼 카드 */
.hero-form-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: var(--fg, #1F2937);
}
.hero-form-card .form-head { margin-bottom: 22px; }
.hero-form-card .form-step {
  display: inline-block;
  font-family: var(--font-brand, 'Outfit', sans-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #6366F1;
  padding: 5px 12px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 999px;
  margin-bottom: 12px;
}
.hero-form-card .form-head h2 {
  font-family: var(--font-brand, 'Outfit', sans-serif);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--fg, #1F2937);
}
.hero-form-card .form-head p {
  font-size: 13px;
  color: var(--fg-soft, #4B5563);
  margin: 0;
}
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-form label > span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--fg, #1F2937);
  letter-spacing: -0.01em;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-size: 14.5px;
  background: #fff;
  color: var(--fg, #1F2937);
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.hero-form .form-agree {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  cursor: pointer;
}
.hero-form .form-agree input {
  width: auto;
  margin: 2px 0 0 0;
  flex-shrink: 0;
}
.hero-form .form-agree span {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-soft, #4B5563);
  line-height: 1.5;
}
.hero-form .form-agree a {
  color: #6366F1;
  text-decoration: underline;
  font-weight: 600;
}
.btn-block { width: 100%; margin-top: 8px; padding: 14px 20px !important; font-size: 15.5px !important; }
.form-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--fg-muted, #9CA3AF);
  margin: 8px 0 0;
}


@media (max-width: 960px) {
  .hero-mono { padding: 60px 0 80px; }
  .hero-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-meta {
    gap: 16px;
    max-width: none;
  }
  .hero-meta strong { font-size: 22px; }
  .hero-form-card { padding: 24px 22px; }
  .hero-form-card .form-head h2 { font-size: 19px; }
  .hero-map-wide {
    margin-top: 36px;
    padding: 18px;
  }
}

/* ════════════════════════════════════════
   보험 계약 체결 전 주의사항 / 심의필
   ════════════════════════════════════════ */
.notice-compliance {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.notice-compliance .container { max-width: 1080px; }
.notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.notice-col h3 {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FCD34D;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.notice-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notice-col li {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 14px;
  position: relative;
}
.notice-col li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}
.notice-advisory {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  text-align: center;
}
.notice-advisory p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}
.notice-seal {
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FCD34D;
  padding: 12px 20px;
  border: 1px solid rgba(252, 211, 77, 0.3);
  border-radius: 8px;
  display: inline-block;
  background: rgba(252, 211, 77, 0.05);
  width: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* ════════════════════════════════════════
   법적 정보 모달 (개인정보처리방침 / 이용약관)
   ════════════════════════════════════════ */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-modal.open { display: flex; }
.legal-modal-box {
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: 86vh;
  border-radius: 18px;
  padding: 36px 38px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}
.legal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-section, #F3F4F6);
  color: var(--fg, #1F2937);
  font-size: 16px;
  cursor: pointer;
  transition: background var(--trans-fast);
}
.legal-close:hover { background: #E5E7EB; }
.legal-modal-box h2 {
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--fg, #1F2937);
}
.legal-modal-box h4 {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 22px 0 8px;
  color: var(--fg, #1F2937);
}
.legal-modal-box p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--fg-soft, #4B5563);
  margin: 0 0 8px;
}
.legal-modal-box ul {
  padding-left: 18px;
  margin: 8px 0;
}
.legal-modal-box li {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--fg-soft, #4B5563);
  margin-bottom: 4px;
}
.legal-modal-box .legal-meta {
  margin-top: 24px;
  font-size: 12px;
  color: var(--fg-muted, #9CA3AF);
  text-align: right;
  font-style: italic;
}
