/* ==========================================================
   바로클릭페이 — 프론트 통합 스타일시트
   ========================================================== */

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0a1628;
  --blue-800: #0d2047;
  --blue-700: #103a7e;
  --blue-600: #1a56db;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gold:     #f59e0b;

  --font-main: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(13,32,71,.08);
  --shadow-md: 0 4px 20px rgba(13,32,71,.12);
  --shadow-lg: 0 8px 40px rgba(13,32,71,.18);

  --header-h: 64px;
  --footer-h: 68px;
  --max-w:    840px;
}

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.7;
  padding-top: var(--header-h);
  padding-bottom: calc(var(--footer-h) + 16px);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 10px;
}

.page-wrapper {
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--blue-800);
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(10,22,40,.35);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.header-logo img { flex-shrink: 0; }

/* ── 햄버거 버튼 ─────────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--white);
}

.hamburger svg { width: 26px; height: 26px; }




.header-nav {
  display: flex;
  gap: 4px;
}

.header-nav a {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
}

.header-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

@media (max-width: 768px) {
  .hamburger { display: flex; align-items: center; }

  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--blue-800);
    flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 4px 16px rgba(10,22,40,.3);
    z-index: 999;
  }

  .header-nav.open { display: flex; }

  .header-nav a {
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .header-nav a:last-child { border-bottom: none; }
}

/* ── Footer Nav ──────────────────────────────────────────── */
.site-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--footer-h);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  z-index: 1000;
  box-shadow: 0 -2px 16px rgba(13,32,71,.08);
}

.footer-nav { height: 100%; display: flex; }

.footer-btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
  text-decoration: none;
}

.footer-btn svg { width: 26px; height: 26px; }

.footer-btn.primary { background: var(--blue-600); color: var(--white); }

.footer-divider { width: 1px; background: var(--gray-200); margin: 12px 0; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-800) 60%, #0f2f6e 100%);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
  display: flex;
  align-items: center;
}


.hero-title {
  font-size: 9vw;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 18px;
  word-break: keep-all;
}

.hero-title .accent { color: var(--blue-400); }

.hero-sub {
  font-size: 4vw;
  color: rgba(255,255,255,.75);
  max-width: 100%;
  margin-bottom: 0;
  line-height: 1.85;
  word-break: keep-all;
}

.hero-sub strong { font-weight: 900; letter-spacing: -0.3px; }

/* ── Hero 2-column layout ─────────────────────────────────── */
.hero .container { width: 100%; }

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-left { flex: 1; min-width: 0; }

.hero-right {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Floating Card SVG ────────────────────────────────────── */
.hero-card-visual {
  width: 100%;
  animation: floatCard 3.6s ease-in-out infinite;
}

@keyframes floatCard {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}



/* ── Section Common ──────────────────────────────────────── */
.section { padding: 56px 0; }
.section-alt { background: var(--white); }



.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 600px;
}

/* ── Advantage Cards (see bottom overrides) ──────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

/* ── Process Steps ───────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-600), var(--blue-100));
}

.step-item {
  display: flex;
  gap: 18px;
  padding: 0 0 32px;
  position: relative;
}

.step-item:last-child { padding-bottom: 0; }

.step-dot {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.step-content .step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 5px;
  padding-top: 10px;
}

.step-content .step-body {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── Promo Banner ────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(120deg, #0a1628 0%, var(--blue-700) 50%, #0a1628 100%);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}



.promo-banner .promo-text .promo-tag {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-banner .promo-text .promo-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.promo-banner .promo-text .promo-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
}

.promo-banner .promo-text .promo-title em {
  font-style: normal;
  color: var(--gold);
}

.promo-compare {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: .02em;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .promo-banner { flex-direction: column; align-items: flex-start; }
  .cta-btn { width: 100%; justify-content: center; }
}

@media (min-width: 769px) {
  .promo-banner .promo-text .promo-title { font-size: 40px; }
  .promo-compare { font-size: 16px; }
  .cta-btn { font-size: 16px; padding: 16px 28px; }
}

/* ── Notice / Warning ────────────────────────────────────── */
.notice-box {
  background: #fefce8;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin: 24px 0;
}

.notice-box .notice-title {
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-box .notice-body {
  font-size: 14px;
  color: #78350f;
  line-height: 1.75;
}

.danger-box {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin: 24px 0;
}

.danger-box .notice-title {
  font-size: 14px;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.danger-box .notice-body {
  font-size: 14px;
  color: #7f1d1d;
  line-height: 1.75;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-900);
  text-align: left;
  gap: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--blue-500);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}

.faq-item input[type="checkbox"] { display: none; }
.faq-item input:checked ~ .faq-q::after { content: '−'; }

.faq-a {
  display: none;
  padding: 14px 20px 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
}

.faq-item input:checked ~ .faq-a { display: block; }

/* ── Review Cards ────────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
}

.review-card .rv-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 3px;
}

.review-card .rv-tag {
  font-size: 12px;
  color: var(--blue-500);
  font-weight: 600;
  margin-bottom: 10px;
}

.review-card .rv-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.7px;
}

.review-card .rv-body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.72;
}

/* ── Consultation Form ──────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  margin-top: 28px;
}

.form-row { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 7px;
}

.form-label .req { color: var(--blue-600); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-hint {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 5px;
}

.submit-btn {
  width: 100%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.form-success { text-align: center; padding: 40px 20px; }

.form-success .success-icon { font-size: 48px; margin-bottom: 14px; }

.form-success .success-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.form-success .success-body {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header { background: var(--blue-900); padding: 40px 0 36px; }

.page-header .page-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.page-header .page-sub {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

/* ── PC (769px 이상) ─────────────────────────────────────── */
@media (min-width: 769px) {
  :root {
    --max-w: 1000px;
  }

  body { font-size: 18px; }

  .header-logo { font-size: 22px; }
  .header-nav a { font-size: 16px; padding: 8px 16px; }
  .footer-btn  { font-size: 15px; }
  .footer-btn svg { width: 30px; height: 30px; }

  .hero-title  { font-size: 5.5vw; letter-spacing: -3px; }
  .hero-sub    { font-size: 1.6vw; }
  .hero-right  { width: 260px; }

  .card-grid { grid-template-columns: repeat(3, 1fr); }

  .section-label { font-size: 13px; }
  .section-title { font-size: 36px; }
  .section-desc  { font-size: 18px; }

  .adv-card .card-num   { font-size: 13px; }
  .adv-card .card-title { font-size: 20px; }
  .adv-card .card-body  { font-size: 16px; }

  .step-dot               { width: 52px; height: 52px; font-size: 16px; }
  .step-content .step-title { font-size: 20px; }
  .step-content .step-body  { font-size: 17px; }

  .promo-banner .promo-text .promo-title { font-size: 30px; }
  .promo-banner .promo-text .promo-sub   { font-size: 16px; }
  .cta-btn { font-size: 17px; padding: 16px 30px; }

  .notice-box .notice-title,
  .notice-box .notice-body,
  .danger-box .notice-title,
  .danger-box .notice-body { font-size: 16px; }

  .faq-q   { font-size: 18px; }
  .faq-a   { font-size: 16px; }

  .review-card .rv-name { font-size: 17px; }
  .review-card .rv-tag  { font-size: 14px; }
  .review-card .rv-body { font-size: 15px; }

  .form-label   { font-size: 16px; }
  .form-control { font-size: 17px; }
  .form-hint    { font-size: 14px; }
  .submit-btn   { font-size: 18px; }

  .form-success .success-title { font-size: 26px; }
  .form-success .success-body  { font-size: 18px; }

  .page-header .page-title { font-size: 38px; }
  .page-header .page-sub   { font-size: 18px; }
}

/* ── Hero 추가 요소 ──────────────────────────────────────── */

/* ── 모바일: hero 세로 배치 ──────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
  }
  .hero-left {
    order: 1;
    text-align: center;
  }
  .hero-right {
    order: 2;
    width: 220px;
    margin: 32px auto 0;
    align-self: center;
  }
}

.hl-white {
  color: #ffffff;
  font-weight: 900;
}

.hl-blue {
  color: var(--blue-400);
  font-weight: 900;
}

/* ── 어드밴티지 카드 개선 ────────────────────────────────── */
.adv-card {
  border-top: 3px solid var(--blue-600);
  padding: 22px 18px;
}

.adv-card .card-num {
  font-size: 11px;
  font-weight: 900;
  color: var(--blue-500);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.adv-card .card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.adv-card .card-body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── 후기 카드 개선 ──────────────────────────────────────── */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--blue-500);
}

.rv-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }

.rv-body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.rv-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rv-tag {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}



/* ── PC 추가 오버라이드 ───────────────────────────────────── */
@media (min-width: 769px) {
  .adv-card .card-title { font-size: 18px; }
  .adv-card .card-body  { font-size: 15px; }
  .rv-body  { font-size: 15px; }
  .rv-name  { font-size: 15px; }
  .cta-title { font-size: 36px; }
  .cta-desc  { font-size: 18px; }
}

/* ── Adv Card 새 스타일 ──────────────────────────────────── */
.adv-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(13,32,71,.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.adv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
}

.adv-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}

.adv-card .card-num { display: none; }

.adv-card .card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.3;
  margin: 0;
}

.adv-card .card-body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}





/* ── Consult Layout ──────────────────────────────────────── */
.consult-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consult-form-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.consult-form {
  flex: 1;
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(13,32,71,.08);
}

/* ── Consult Form Fields ─────────────────────────────────── */
.cf-row { margin-bottom: 20px; }

.cf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.cf-req { color: var(--blue-600); }
.cf-opt { font-size: 11px; font-weight: 500; color: var(--gray-400); background: var(--gray-100); padding: 2px 7px; border-radius: 50px; }

.cf-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  appearance: none;
  transition: border-color .15s, box-shadow .15s;
}

.cf-input:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}

.cf-input::placeholder { color: var(--gray-400); }

.cf-textarea {
  resize: vertical;
  min-height: 120px;
}



.cf-submit {
  width: 100%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  letter-spacing: -0.2px;
}

/* ── Consult Side ────────────────────────────────────────── */
.consult-side {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(13,32,71,.07);
}

.side-icon {
  width: 40px; height: 40px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}

.side-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}

.side-body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Consult Done ────────────────────────────────────────── */
.consult-done {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(13,32,71,.08);
}

.done-circle {
  width: 72px; height: 72px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.done-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 10px;
}

.done-body {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.done-tg {
  display: inline-block;
  background: var(--blue-600);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}



/* ── Consult Error ───────────────────────────────────────── */
.consult-error {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  color: #991b1b;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── PC 상담 레이아웃 ─────────────────────────────────────── */
@media (max-width: 768px) {
  .consult-form-wrap { flex-direction: column; gap: 0; }
  .consult-form { width: 100%; }
  .consult-side { display: none; }
  .consult-header-inner { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 769px) {
  .adv-card .card-title { font-size: 17px; }
  .adv-card .card-body  { font-size: 14px; }
  .consult-title { font-size: 30px; }
  .cf-submit { font-size: 18px; }
}

/* ── Live Status ─────────────────────────────────────────── */
.live-wrap {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,32,71,.08);
}

.live-header {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr 0.8fr 0.8fr 1fr;
  background: var(--blue-900);
  padding: 12px 16px;
  gap: 8px;
}

.live-header > div {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.3px;
}

.live-list {
  height: 320px;
  overflow: hidden;
  background: var(--white);
}

.live-inner {
  will-change: transform;
}

.live-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr 0.8fr 0.8fr 1fr;
  padding: 12px 16px;
  gap: 8px;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}

.live-row:last-child { border-bottom: none; }

.live-row > div {
  font-size: 13px;
  color: var(--gray-800);
}

.live-label { display: none; }

.live-val {
  font-size: 13px;
  color: var(--gray-700);
}

.live-status {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* 모바일: 라벨 보이기, 그리드 해제 */
@media (max-width: 768px) {
  .live-header { display: none; }

  .live-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 12px 14px;
  }

  .live-row > div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
  }

  .live-label {
    display: inline;
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 600;
  }

  .live-label::after { content: ' '; }
}

@media (min-width: 769px) {
  .live-header > div { font-size: 13px; }
  .live-val          { font-size: 14px; }
  .live-status       { font-size: 13px; }
}

/* ── Advantage Section (dark hero style) ─────────────────── */
.adv-section {
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-800) 60%, #0f2f6e 100%);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}

.adv-header {
  text-align: center;
  margin-bottom: 44px;
}

.adv-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.22;
  letter-spacing: -1px;
  margin-top: 10px;
}

.adv-title .accent { color: var(--blue-400); }

/* 카드 — 다크 배경 위 반투명 */
.adv-section .adv-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: none;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,.02) 20px,
    rgba(255,255,255,.02) 40px
  );
  pointer-events: none;
}

.adv-section .adv-card::after {
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
}

.adv-section .adv-icon {
  background: rgba(255,255,255,.1);
  color: var(--blue-400);
}

.adv-section .card-title {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.adv-section .card-body {
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

@media (min-width: 769px) {
  .adv-title { font-size: 46px; letter-spacing: -2px; }
  .adv-section .card-title { font-size: 17px; }
  .adv-section .card-body  { font-size: 14px; }
}

/* ── Adv Grid (2x2 icon+text) ────────────────────────────── */
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.adv-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.adv-item-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
}

/* 구분선 — 행 사이 */
.adv-item:nth-child(1),
.adv-item:nth-child(2) {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.adv-item-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.adv-item-body {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .adv-grid { gap: 20px 16px; }
  .adv-item-icon { width: 52px; height: 52px; }
  .adv-item-title { font-size: 18px; }
  .adv-item-body  { font-size: 15px; }
}

@media (min-width: 769px) {
  .adv-item-icon  { width: 64px; height: 64px; }
  .adv-item-title { font-size: 22px; }
  .adv-item-body  { font-size: 18px; }
}

/* ── Steps Center (세로 중앙 배치) ───────────────────────── */
.steps-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-box {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 52px; height: 52px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
}

.step-line {
  width: 32px;
  height: 2px;
  background: var(--blue-200);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.step-box-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.step-box-body {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.step-arrow {
  color: var(--blue-400);
  padding: 8px 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 769px) {
  .step-box       { max-width: 520px; }
  .step-num       { width: 64px; height: 64px; font-size: 20px; }
  .step-box-title { font-size: 22px; }
  .step-box-body  { font-size: 18px; }
}

/* ── Live Section (adv-section 위) ──────────────────────── */
.adv-section .live-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.adv-section .live-header {
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.adv-section .live-header > div {
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

.adv-section .live-list {
  background: rgba(255,255,255,.04);
}

.adv-section .live-row {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.adv-section .live-row > div {
  color: rgba(255,255,255,.85);
}

.adv-section .live-val {
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

.adv-section .live-label {
  color: rgba(255,255,255,.45);
}

.adv-section .live-status {
  background: rgba(74,222,128,.15);
  color: #4ade80;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Review Slider ───────────────────────────────────────── */
.rv-slider-wrap {
  overflow: hidden;
  padding: 28px 0 36px;
  cursor: grab;
  user-select: none;
  max-width: var(--max-w);
  margin: 0 auto;
}

.rv-slider-wrap:active { cursor: grabbing; }

.rv-slider {
  display: flex;
  gap: 14px;
  padding: 0 20px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.rv-slide {
  flex-shrink: 0;
  width: calc(50% - 17px);
  background: var(--blue-900);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.rv-quote {
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-600);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -8px;
}

.rv-slide .rv-body {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  flex: 1;
}

.rv-slide .rv-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.1);
}



@media (min-width: 769px) {
  .rv-slide .rv-body { font-size: 15px; }
  .rv-slide .rv-name { font-size: 15px; }
}

/* ── Support Page ────────────────────────────────────────── */
.support-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.support-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(13,32,71,.06);
}

.support-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-icon-tg    { background: rgba(42,171,238,.1); }
.support-icon-kakao { background: rgba(254,229,0,.2); }

.support-info {
  flex: 1;
  min-width: 0;
}

.support-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}



.support-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.support-btn-tg    { background: #2AABEE; color: var(--white); }
.support-btn-kakao { background: #FEE500; color: #3C1E1E; }

@media (max-width: 480px) {
  .support-card { flex-wrap: wrap; }
  .support-btn  { width: 100%; text-align: center; }
}

@media (min-width: 769px) {
  .support-title { font-size: 20px; }
  .support-desc  { font-size: 15px; }
  .support-btn   { font-size: 15px; padding: 13px 24px; }
}

/* ── SEO Content Section ─────────────────────────────────── */
.seo-content {
}

.seo-main-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-900);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--blue-600);
}

.seo-block {
  margin-bottom: 52px;
}

.seo-block h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--blue-600);
  line-height: 1.35;
}

.seo-block p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 14px;
}

.seo-block p strong { color: var(--blue-900); }

.seo-block p:last-child { margin-bottom: 0; }

/* 비교표 */
.seo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.seo-compare-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}

.seo-compare-item.highlight {
  background: var(--blue-50);
  border-color: var(--blue-200);
}

.seo-compare-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.seo-compare-item.highlight .seo-compare-title {
  color: var(--blue-700);
  border-color: var(--blue-200);
}

.seo-compare-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-compare-item ul li {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.seo-compare-item ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gray-400);
}

.seo-compare-item.highlight ul li { color: var(--blue-800); }
.seo-compare-item.highlight ul li::before { color: var(--blue-500); }

/* 체크리스트 */
.seo-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.seo-check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.seo-check-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
}

.seo-check-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
  padding-top: 4px;
}

.seo-check-text strong {
  display: block;
  font-size: 15px;
  color: var(--blue-900);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .seo-compare { grid-template-columns: 1fr; }
  .seo-main-title { font-size: 20px; }
  .seo-block h3 { font-size: 17px; }
  .seo-block p  { font-size: 14px; }
}

@media (min-width: 769px) {
  .seo-main-title { font-size: 32px; }
  .seo-block h3 { font-size: 24px; }
  .seo-block p  { font-size: 16px; }
  .seo-compare-item ul li { font-size: 15px; }
  .seo-check-text { font-size: 15px; }
}