html, body{ overflow-x: hidden; }

:root{
  --bg:#ffffff;
  --bg2:#f7f8fb;
  --card:#ffffff;
  --card2:#f5f6fa;
  --text:#111827;
  --muted:#6b7280;
  --line: rgba(17,24,39,.10);
  --line2: rgba(17,24,39,.14);
  --shadow: 0 14px 40px rgba(17,24,39,.08);
  --radius: 18px;
  --radius2: 24px;

  /* AI 느낌 줄이기: 3색 그라데이션 -> 단색 블루 계열 */
  --grad: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);

  /* 히어로 배경도 과하지 않게 */
  --grad2: radial-gradient(1000px 520px at 50% 0%, rgba(37,99,235,.10), transparent 60%);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.skip{
  position:absolute;
  left:-999px;
  top:12px;
  background:#111827;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  z-index:9999;
}
.skip:focus{left:12px}

.container{
  width:min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.muted{color:var(--muted)}
.small{font-size: 13px}

.grad{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* PC 기본 */
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
}

/* 모바일 */
@media (max-width: 768px){
  .grad{
    font-size: 26px;
    line-height: 1.3;
  }
}


.header{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.brand__mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad);
  box-shadow: 0 10px 24px rgba(37,99,235,.18);
  position: relative;
}
.brand__mark::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(17,24,39,.18);
}
.brand__text{font-weight:800; letter-spacing:.2px}
.brand__sub{font-size:12px; color:var(--muted); margin-left: 6px}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a.btn{color:#fff}

.menuBtn{
  display:none;
  width:46px;height:42px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(17,24,39,.04);
  cursor:pointer;
}
.menuBtn span{
  display:block;
  height:2px;
  margin: 7px 10px;
  background: rgba(17,24,39,.80);
  border-radius: 99px;
}

.mobileNav{
  display:none;
}
.mobileNav.isOpen{
  display:block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.mobileNav__panel{
  position:absolute;
  right: 14px;
  top: 70px;
  width: min(360px, calc(100% - 28px));
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line2);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.mobileNav__panel a{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(17,24,39,.03);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 650;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(37,99,235,.22);
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  letter-spacing:.2px;
  box-shadow: 0 14px 30px rgba(37,99,235,.18);
  cursor:pointer;
}
.btn--ghost{
  background: rgba(17,24,39,.03);
  color: var(--text);
  border: 1px solid var(--line2);
  box-shadow: none;
}
.btn--small{padding: 10px 12px; border-radius: 14px; font-size: 13px}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.03);
  color: var(--muted);
  font-weight: 650;
  width: fit-content;
}
.badge .dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.14);
}

.hero{
  padding: 54px 0 26px;
  background: var(--grad2);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
.hero h1{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 14px 0 12px;
  letter-spacing: -.6px;
}
.lead{
  color: rgba(17,24,39,.76);
  font-size: 16px;
  margin: 0 0 18px;
}
.hero__cta{display:flex; gap: 12px; flex-wrap:wrap}

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.metaCard{
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  padding: 12px 12px;
}
.metaCard__k{color:var(--muted); font-weight:650; font-size:12px}
.metaCard__v{font-weight:900; font-size: 20px; margin: 4px 0 0}
.metaCard__s{color:var(--muted); font-size:12px; margin-top: 2px}

.hero__visual{position:relative; min-height: 420px}
.glass{
  border-radius: 26px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.chip{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17,24,39,.03);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}
.lights{display:flex; gap: 8px}
.lights span{
  width:10px;height:10px;border-radius:99px;
  background: rgba(17,24,39,.18);
}
.glass__body{padding: 14px}
.chart{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items:end;
  height: 180px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(17,24,39,.03);
  border: 1px solid var(--line);
}
.bar{
  height: var(--h);
  border-radius: 14px;
  background: var(--grad);
  opacity: .95;
}
.rows{margin-top: 14px; display:flex; flex-direction:column; gap: 10px}
.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.03);
}
.pill{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.22);
  font-weight: 800;
  font-size: 12px;
}
.good{color:#16a34a; font-weight:900}
.note{margin-top: 10px; color: rgba(107,114,128,.95); font-size: 12px}

.orb{
  position:absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
  pointer-events:none;
}
.orb--1{width:180px;height:180px; left:-40px; top: 40px; background: rgba(37,99,235,.20)}
.orb--2{width:210px;height:210px; right:-60px; top: 40px; background: rgba(37,99,235,.14)}
.orb--3{width:180px;height:180px; right: 30px; bottom:-50px; background: rgba(37,99,235,.10)}

.logos{
  margin-top: 26px;
  display:flex;
  align-items:center;
  gap: 16px;
  justify-content:space-between;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.02);
}
.logos__row{display:flex; gap: 10px; flex-wrap:wrap; justify-content:flex-end}
.logo{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.03);
  color: rgba(17,24,39,.88);
  font-weight: 650;
  font-size: 13px;
}

.section{padding: 64px 0}
.section--alt{background: linear-gradient(180deg, rgba(17,24,39,.02), rgba(17,24,39,0))}
.sectionHead{margin-bottom: 22px}
.sectionHead h2{margin:0 0 10px; font-size: 28px; letter-spacing:-.3px}
.sectionHead p{margin:0}

.grid{display:grid; gap: 14px}
.services{
  grid-template-columns: repeat(3, 1fr);
}
.card{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
  padding: 16px;
}
.card:hover{border-color: rgba(17,24,39,.16)}
.icon{
  width: 26px;        /* ← 기존 이모지 크기랑 맞추기 */
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;  /* 비율 유지 */
  display: block;
}

/* 시각 보정 */
.icon--tiktok img{
  transform: scale(1.3);
}

/* 시각 보정 */
.icon--googleads img{
  transform: scale(1.3);
}

/* 시각 보정 */
.icon--place img{
  transform: scale(1.3);
}

/* 시각 보정 */
.icon--blog img{
  transform: scale(1.3);
}

/* 시각 보정 */
.icon--in img{
  transform: scale(1.5);
}

.card h3{margin: 10px 0 8px}
.card p{margin:0 0 10px; color: rgba(17,24,39,.78)}
.card ul{margin:0; padding-left: 18px; color: var(--muted)}
.card li{margin: 6px 0}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step__n{
  display:inline-flex;
  width: 44px; height: 44px;
  align-items:center; justify-content:center;
  border-radius: 16px;
  background: rgba(17,24,39,.03);
  border: 1px solid var(--line);
  font-weight: 900;
}
.split{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checks{list-style:none; padding:0; margin: 12px 0 0}
.checks li{
  padding-left: 26px;
  margin: 10px 0;
  position:relative;
  color: rgba(17,24,39,.82);
}
.checks li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color:#16a34a;
  font-weight: 900;
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.price__desc{color: rgba(17,24,39,.78); margin: 6px 0 10px}
.price__tag{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.03);
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
  margin-bottom: 10px;
}
.price--featured{
  border-color: rgba(37,99,235,.28);
  background: rgba(37,99,235,.04);
  position:relative;
}
.ribbon{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.22);
}
.notice{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px dashed rgba(17,24,39,.18);
  background: rgba(17,24,39,.02);
  color: rgba(17,24,39,.78);
}

.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
details summary{
  cursor:pointer;
  font-weight: 800;
  list-style:none;
}
details summary::-webkit-details-marker{display:none}
details[open] summary{margin-bottom: 10px}
details .muted{margin-top: 6px}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contactCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 10px;
}
.info__k{color:var(--muted); font-size:12px; font-weight:650}
.info__v{font-weight:900; font-size: 18px; margin-top: 4px}
.info__s{color:var(--muted); font-size:12px; margin-top: 2px}

.form label{display:block; margin-bottom: 12px}
.form span{display:block; margin-bottom: 7px; color: rgba(17,24,39,.92); font-weight: 700;}
input, textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line2);
  background: #ffffff;
  color: var(--text);
  padding: 12px 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 6px rgba(37,99,235,.12);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pills{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.pillCheck{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.03);
  color: rgba(17,24,39,.92);
  font-weight: 650;
  font-size: 13px;
  user-select:none;
}
.pillCheck input{width:auto; accent-color: #2563eb}
.form__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 6px;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: var(--bg2);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.footer__links{display:flex; gap: 14px; flex-wrap:wrap}
.brand--footer .brand__sub{display:none}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap: 18px}
  .hero__visual{min-height: 380px}
  .services{grid-template-columns: repeat(2, 1fr)}
  .steps{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .faq{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
}

@media (max-width: 760px){
  .nav{display:none}
  .menuBtn{display:block}
  .brand__sub{display:none}
  .hero__meta{grid-template-columns: 1fr; }
  .logos{flex-direction:column; align-items:flex-start}
  .logos__row{justify-content:flex-start}
  .services{grid-template-columns: 1fr}
  .form__row{grid-template-columns: 1fr}
}

.brand__logo{
  height: 54px;   /* 기본값 */
  width: auto;
  display: block;
}

@media (max-width: 760px){
  .brand__logo{
    height: 34px;
  }
}

.contactBtns {
  display: flex;
  gap: 12px;
  margin-top: 5%;
}

.chatBtn {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
}

.chatBtn img {
  width: 24px;
  height: 24px;
}

.chatBtn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ====== HERO DASHBOARD MOTION (고급스럽게) ====== */

/* 상단 lights 은근히 깜빡 */
.lights span{
  animation: blink 2.6s infinite ease-in-out;
  opacity: .55;
}
.lights span:nth-child(2){ animation-delay: .4s; }
.lights span:nth-child(3){ animation-delay: .8s; }
@keyframes blink{
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: .95; transform: translateY(-1px); }
}

/* 바에 '광택 스캔' + 살짝 부드러운 움직임 */
.bar{
  position: relative;
  overflow: hidden;
  will-change: transform, height;
}

/* 광택이 지나가는 효과 */
.bar::after{
  content:"";
  position:absolute;
  inset: -20% -40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 45%, transparent 60%);
  transform: translateX(-60%) rotate(8deg);
  animation: sheen 2.8s infinite ease-in-out;
  opacity: .75;
  pointer-events: none;
}
.bar:nth-child(2)::after{ animation-delay: .3s; }
.bar:nth-child(3)::after{ animation-delay: .6s; }
.bar:nth-child(4)::after{ animation-delay: .9s; }
.bar:nth-child(5)::after{ animation-delay: 1.2s; }
.bar:nth-child(6)::after{ animation-delay: 1.5s; }

@keyframes sheen{
  0%   { transform: translateX(-70%) rotate(8deg); opacity: .15; }
  35%  { opacity: .75; }
  100% { transform: translateX(70%) rotate(8deg); opacity: .15; }
}

/* rows가 번갈아가며 하이라이트(대시보드 느낌) */
.row{
  position: relative;
  overflow: hidden;
}
.row::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, transparent, rgba(17,24,39,.06), transparent);
  transform: translateX(-70%);
  opacity: 0;
  pointer-events: none;
}
.glass.active .row:nth-child(1)::after{ animation: sweep 3.8s infinite; }
.glass.active .row:nth-child(2)::after{ animation: sweep 3.8s infinite; animation-delay: 1.2s; }
.glass.active .row:nth-child(3)::after{ animation: sweep 3.8s infinite; animation-delay: 2.4s; }

@keyframes sweep{
  0% { transform: translateX(-70%); opacity: 0; }
  10%{ opacity: 1; }
  40%{ opacity: .9; }
  100%{ transform: translateX(70%); opacity: 0; }
}

/* 처음 등장 애니메이션(사라짐 방지: 기본은 보임) */
.chart .bar{
  transform-origin: bottom;
  transform: scaleY(1);
}
.glass.active .chart .bar{
  transform: scaleY(0);
  animation: grow 1.1s ease-out forwards;
}
@keyframes grow{
  to { transform: scaleY(1); }
}

.h1-sub{
  font-size: 0.75em;   /* 살짝 줄이기 (0.8~0.85 추천) */
  font-weight: 700;    /* 너무 얇아지지 않게 */
  display: inline-block;
}

/* contact flow (무료상담 아래 공백 채우기) */
.contactFlow{
  margin: 14px 0 16px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.02);
}

.contactFlow__head{
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -.2px;
  margin-bottom: 10px;
  color: rgba(17,24,39,.92);
}

.contactFlow__steps{
  display:flex;
  align-items:center;
  gap: 10px;
}

.contactFlow__step{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(17,24,39,.03);
  min-width: 0;
}

.contactFlow__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.25);
  background: rgba(37,99,235,.08);
  font-weight: 900;
  font-size: 12px;
}

.contactFlow__label{
  font-weight: 800;
  font-size: 13px;
  color: rgba(17,24,39,.90);
  white-space: nowrap;
}

.contactFlow__line{
  flex: 1;
  height: 1px;
  background: rgba(17,24,39,.10);
  max-width: 46px;
}

.contactFlow__trust{
  margin-top: 10px;
  color: rgba(107,114,128,.95);
  font-size: 12px;
}

/* 모바일에서 세로로 예쁘게 */
@media (max-width: 760px){
  .contactFlow__steps{
    flex-direction: column;
    align-items: stretch;
  }
  .contactFlow__line{
    width: 100%;
    max-width: none;
  }
  .contactFlow__step{
    justify-content: space-between;
  }
}

/* CPC 강조 카드 */
.contactCpc{
  margin-top: 14px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(37,99,235,.22);
  background:
    radial-gradient(600px 120px at 20% 0%, rgba(37,99,235,.10), transparent 60%),
    rgba(255,255,255,.92);
}

.contactCpc__title{
  font-weight: 900;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -.2px;
}

.contactCpc__desc{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(107,114,128,.95);
}

.footer__logo{
  height: 36px;          /* footer에 딱 좋은 크기 */
  width: auto;
  display: block;
  opacity: .95;
}

/* 모바일에서는 살짝 줄이기 */
@media (max-width: 760px){
  .footer__logo{
    height: 30px;
  }
}

/* footer business info (우측) */
.footer__bizInfo{
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(107,114,128,.95);
}

/* 모바일에서는 가운데 정렬 */
@media (max-width: 760px){
  .footer__bizInfo{
    text-align: left;
    margin-top: 12px;
  }
}
/* footer 기본: 좌우 가로 정렬 */
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
}

/* 우측 사업자 정보 */
.footer__bizInfo{
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(107,114,128,.95);
}

/* ✅ 모바일에서 세로로 쌓기 + 정렬 통일 */
@media (max-width: 760px){
  .footer__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer__bizInfo{
    text-align: left;
    width: 100%;
  }
}

/* 무료상담 타이틀+설명만 상담진행방식처럼 박스화 */
.contact__copy > h2,
.contact__copy > p.muted{
  display: inline-block;
  width: 100%;
}

.contact__copy > h2{
  margin: 0;
}

.contact__copy > p.muted{
  margin-top: 10px;
}

/* 핵심: h2 + p를 감싸는 박스처럼 보이게 */
.contact__copy{
  position: relative;
}

.contact__copy::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  /* h2+p 높이만큼만 덮게 대충 */
  height: 120px; /* ✅ 필요하면 숫자만 조절 */
  background: rgba(17,24,39,.03);
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 18px;
  z-index: 0;
}

/* 글자는 박스 위로 */
.contact__copy > h2,
.contact__copy > p.muted{
  position: relative;
  z-index: 1;
  padding-left: 18px;
  padding-right: 18px;
}

.contact__copy > h2{
  padding-top: 18px;
}

.contact__copy > p.muted{
  padding-bottom: 18px;
}

/* 모바일 전용 (768px 이하) */
@media (max-width: 768px) {
  .hero .badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 10px 0;
  }
}

/* 기본: 모바일 문구 숨김 */
.lead--mo {
  display: none;
}

/* 모바일 전용 */
@media (max-width: 768px) {
  .lead--pc {
    display: none;
  }

  .lead--mo {
    display: block;
  }
}

/* 기본: 모바일 문구 숨김 */
.heroTitle--mo {
  display: none;
}

/* 모바일 전용 */
@media (max-width: 768px) {
  .badge--pc,
  .heroTitle--pc {
    display: none;
  }

  .heroTitle--mo {
    display: block;
  }
}

.chatBtn span {
  font-size: 16px;
  white-space: nowrap;
}

/* 모바일 */
@media (max-width: 768px) {
  .chatBtn span {
    font-size: 14px;
  }

  .chatBtn span::before {
    content: attr(data-mobile);
  }

  .chatBtn span {
    visibility: hidden;
    position: relative;
  }

  .chatBtn span::before {
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
  }
}
