/* =============================================================================
   intro-landing.css — 랜딩(/) 전용 스타일
   - body.landing 하위로만 적용되므로 다른 페이지에 영향이 없다.
   - 로딩 순서: bootstrap(cosmo) → clean-theme.css → intro-landing.css (마지막)
   ============================================================================= */

.landing {
  --lp-blue: #0E67DB;
  --lp-blue-dark: #0B4FA8;
  --lp-cyan: #2CAFFF;
  --lp-ink: #0F172A;
  --lp-body: #475569;
  --lp-muted: #94A3B8;
  --lp-line: #E2E8F0;
  --lp-surface: #F8FAFC;
  --lp-nav-h: 60px;
}

/* 랜딩은 다크 히어로가 최상단에 오므로 네비게이션을 항상 불투명 흰색으로 고정한다.
   (clean-theme.css 는 lg 이상에서 #mainNav 를 transparent 로 두어 글자가 묻힌다) */
.landing #mainNav {
  background-color: #fff;
}

.landing section {
  scroll-margin-top: var(--lp-nav-h);
}

/* -----------------------------------------------------------------------------
   1. Hero (dark)
   -------------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--lp-nav-h) + 5.5rem) 0 5rem;
  background:
    radial-gradient(1100px 520px at 78% 6%, rgba(44, 175, 255, 0.16), transparent 60%),
    radial-gradient(900px 480px at 10% 95%, rgba(14, 103, 219, 0.20), transparent 62%),
    linear-gradient(165deg, #0B1220 0%, #111C31 55%, #0B1220 100%);
  color: #fff;
}
/* 미세한 그리드 텍스처 */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}
.lp-hero > .container {
  position: relative;
  z-index: 1;
}

/* -----------------------------------------------------------------------------
   오로라 (히어로 우측 배경)
   - 본문 텍스트는 좌측에 있으므로, 좌측으로 갈수록 사라지게 마스킹해 가독성을 지킨다.
   - z-index 0 : .lp-hero > .container(z-index 1) 아래에 깔린다.
   - mix-blend-mode: screen 으로 빛이 겹치듯 더해져 실제 오로라의 발광에 가까워진다.
   -------------------------------------------------------------------------- */
.lp-aurora {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* 좌(본문) → 우(오로라) 로 서서히 나타나게 해서 글자 위로 색이 번지지 않게 한다 */
  -webkit-mask-image: linear-gradient(to left, #000 40%, transparent 96%);
  mask-image: linear-gradient(to left, #000 40%, transparent 96%);
}

/* 별 — 오로라만 있으면 '밤하늘'로 읽히지 않는다 */
.lp-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.6px 1.6px at 18% 12%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1.2px 1.2px at 32% 26%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1.8px 1.8px at 47% 8%,  rgba(255, 255, 255, 0.9),  transparent),
    radial-gradient(1.1px 1.1px at 58% 33%, rgba(255, 255, 255, 0.6),  transparent),
    radial-gradient(1.5px 1.5px at 71% 17%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1.2px 1.2px at 84% 29%, rgba(255, 255, 255, 0.7),  transparent),
    radial-gradient(1.7px 1.7px at 92% 10%, rgba(255, 255, 255, 0.9),  transparent),
    radial-gradient(1.1px 1.1px at 24% 45%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1.4px 1.4px at 64% 52%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1.2px 1.2px at 88% 46%, rgba(255, 255, 255, 0.6),  transparent),
    radial-gradient(1.6px 1.6px at 39% 63%, rgba(255, 255, 255, 0.5),  transparent),
    radial-gradient(1.1px 1.1px at 77% 70%, rgba(255, 255, 255, 0.45), transparent);
  animation: lp-twinkle 7s ease-in-out infinite alternate;
}
@keyframes lp-twinkle {
  from { opacity: 0.55; }
  to   { opacity: 1; }
}

/* 오로라 커튼 — 길게 늘인 띠를 기울여 겹치고, 강한 blur 로 경계를 지운다 */
.lp-curtain {
  position: absolute;
  top: -25%;
  height: 145%;
  width: 46%;
  filter: blur(52px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
/* 1) 앞쪽 초록 — 오로라의 주색 */
.lp-curtain-1 {
  right: 2%;
  background: linear-gradient(180deg,
    rgba(56, 255, 178, 0) 0%,
    rgba(56, 255, 178, 0.75) 38%,
    rgba(0, 200, 255, 0.32) 72%,
    rgba(0, 200, 255, 0) 100%);
  animation: lp-aurora-1 16s ease-in-out infinite alternate;
}
/* 2) 청록 → 보라 */
.lp-curtain-2 {
  right: 26%;
  background: linear-gradient(180deg,
    rgba(0, 224, 255, 0) 0%,
    rgba(0, 224, 255, 0.58) 44%,
    rgba(124, 92, 255, 0.34) 78%,
    rgba(124, 92, 255, 0) 100%);
  animation: lp-aurora-2 21s ease-in-out infinite alternate;
}
/* 3) 뒤쪽 보라 — 본문 쪽으로 가장 옅게 깔린다 */
.lp-curtain-3 {
  right: 48%;
  width: 38%;
  background: linear-gradient(180deg,
    rgba(168, 85, 247, 0) 0%,
    rgba(168, 85, 247, 0.42) 52%,
    rgba(168, 85, 247, 0) 100%);
  animation: lp-aurora-3 27s ease-in-out infinite alternate;
}

@keyframes lp-aurora-1 {
  0%   { transform: rotate(12deg)  translateX(0)     scaleX(1);    opacity: 0.5; }
  50%  { transform: rotate(17deg)  translateX(-26px) scaleX(1.18); opacity: 0.8; }
  100% { transform: rotate(9deg)   translateX(18px)  scaleX(0.92); opacity: 0.55; }
}
@keyframes lp-aurora-2 {
  0%   { transform: rotate(-9deg)  translateX(10px)  scaleX(1.05); opacity: 0.42; }
  50%  { transform: rotate(-14deg) translateX(-20px) scaleX(0.9);  opacity: 0.7; }
  100% { transform: rotate(-6deg)  translateX(24px)  scaleX(1.15); opacity: 0.5; }
}
@keyframes lp-aurora-3 {
  0%   { transform: rotate(22deg)  translateX(-14px) scaleX(0.95); opacity: 0.3; }
  50%  { transform: rotate(16deg)  translateX(16px)  scaleX(1.2);  opacity: 0.55; }
  100% { transform: rotate(25deg)  translateX(-8px)  scaleX(1);    opacity: 0.35; }
}

/* 화면이 좁아지면 텍스트가 우측까지 차지하므로 오로라를 옅게 물린다 */
@media (max-width: 1199px) {
  .lp-aurora { width: 50%; opacity: 0.65; }
}
@media (max-width: 767px) {
  .lp-aurora { display: none; }
}

/* 모션 최소화 설정: 색은 남기되 움직임만 멈춘다 */
@media (prefers-reduced-motion: reduce) {
  .lp-stars,
  .lp-curtain {
    animation: none;
  }
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(44, 175, 255, 0.35);
  border-radius: 999px;
  background: rgba(44, 175, 255, 0.08);
  color: var(--lp-cyan);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.lp-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-cyan);
  box-shadow: 0 0 0 3px rgba(44, 175, 255, 0.22);
}

/* 배지 줄: 신뢰 배지 + 로그인 없이 문의하기 바로가기 */
.lp-hero-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* 가입 부담 없이 바로 문의할 수 있는 진입점 — 히어로에서 가장 먼저 눈에 띄어야 한다 */
.lp-quick-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #1D8BF1, #2CAFFF);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(44, 175, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.lp-quick-contact:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 24px rgba(44, 175, 255, 0.5);
}
.lp-quick-contact .arrow {
  font-size: 0.75rem;
  transition: transform 0.15s ease;
}
.lp-quick-contact:hover .arrow { transform: translate(2px, -2px); }

/* 시선을 끄는 은은한 링 — 모션 최소화 설정에서는 끈다 */
.lp-quick-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(44, 175, 255, 0.75);
  animation: lp-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes lp-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.14); opacity: 0; }
  100% { transform: scale(1.14); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-quick-contact::after { animation: none; opacity: 0; }
  .lp-quick-contact:hover { transform: none; }
}

.lp-hero h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.02em;
  color: #fff;
}
.lp-hero h1 .accent {
  background: linear-gradient(90deg, var(--lp-cyan), #7FD1FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero .lp-lead {
  max-width: 620px;
  margin: 1.25rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #C3CEDE;
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.lp-btn:hover { transform: translateY(-2px); text-decoration: none; }
.lp-btn-primary {
  background: var(--lp-blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(14, 103, 219, 0.38);
}
.lp-btn-primary:hover { background: #1276F0; color: #fff; }
.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.lp-btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.lp-hero-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

/* 히어로 지표 */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}
.lp-stat {
  padding: 1.4rem 1.25rem;
  background: rgba(11, 18, 32, 0.72);
  text-align: center;
}
.lp-stat .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--lp-cyan);
  line-height: 1.2;
}
.lp-stat .label {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #AEBBCC;
}
.lp-stats-src {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: #6B7A8D;
  text-align: center;
}

/* -----------------------------------------------------------------------------
   공통 섹션 (light)
   -------------------------------------------------------------------------- */
.lp-section { padding: 5.5rem 0; }
.lp-section--tint { background: var(--lp-surface); }

.lp-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-blue);
}
.lp-h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--lp-ink);
}
.lp-sub {
  max-width: 680px;
  margin: 0.9rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--lp-body);
}
.lp-head-center { text-align: center; margin-bottom: 3rem; }

/* -----------------------------------------------------------------------------
   2. 3-step 프로세스 (체험 → 결과확인 → 문의)
   -------------------------------------------------------------------------- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-step:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 103, 219, 0.35);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}
/* 스텝 사이 연결 화살표 */
.lp-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.95rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--lp-line);
  border-right: 2px solid var(--lp-line);
  transform: translateY(-50%) rotate(45deg);
}
.lp-step .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1.1rem;
  border-radius: 11px;
  background: #EEF5FF;
  color: var(--lp-blue);
  font-size: 0.9375rem;
  font-weight: 800;
}
.lp-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--lp-ink);
}
.lp-step p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--lp-body);
}
.lp-step .step-link {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lp-blue);
  text-decoration: none;
}
.lp-step .step-link:hover { text-decoration: underline; }
.lp-step .step-link.is-muted {
  color: var(--lp-muted);
  pointer-events: none;
}

/* -----------------------------------------------------------------------------
   전환 범위 카드 (본문 콘텐츠)
   -------------------------------------------------------------------------- */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1.25rem;
}
.lp-card {
  padding: 1.9rem 1.75rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 103, 219, 0.35);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}
.lp-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lp-ink);
}
.lp-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--lp-body);
}
.lp-card b { color: var(--lp-ink); font-weight: 700; }

/* 라이트 섹션에 얹는 지표 박스 — 다크 히어로용 .lp-stats 를 밝은 배경에 맞게 재도색 */
.lp-stats--light {
  border-color: var(--lp-line);
  background: var(--lp-line);
}
.lp-stats--light .lp-stat { background: #fff; }
.lp-stats--light .lp-stat .num { color: var(--lp-blue); }
.lp-stats--light .lp-stat .label { color: var(--lp-body); }
.lp-section--tint .lp-stats-src { color: var(--lp-muted); }

/* 문의 CTA */
.lp-contact-cta { text-align: center; }
.lp-contact-cta .lp-btn { justify-content: center; }
.lp-contact-links {
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--lp-body);
}
.lp-contact-links a {
  color: var(--lp-blue);
  font-weight: 700;
  text-decoration: none;
}
.lp-contact-links a:hover { text-decoration: underline; }

/* -----------------------------------------------------------------------------
   3. 체험 카드 (기존 experience-item 재사용 + 마무리 손질)
   -------------------------------------------------------------------------- */
.landing .intro_con .experience-item {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
}
.landing .intro_con .experience-item .inner_text_box > .card-title-l {
  letter-spacing: -0.01em;
}
.lp-card-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

/* -----------------------------------------------------------------------------
   4. 파이프라인 (근거)
   -------------------------------------------------------------------------- */
.lp-pipe {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
}
.lp-pipe-item {
  flex: 1 1 150px;
  max-width: 190px;
  padding: 1.25rem 0.85rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-top: 3px solid var(--accent, var(--lp-blue));
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.lp-pipe-item .ico {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft, #EEF5FF);
  font-size: 20px;
}
.lp-pipe-item .name {
  margin: 0 0 0.3rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--lp-ink);
}
.lp-pipe-item .desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #64748B;
}
.lp-pipe-arrow {
  display: flex;
  align-items: center;
  color: #CBD5E1;
  font-size: 20px;
  font-weight: 800;
}
.lp-more {
  margin-top: 2.25rem;
  text-align: center;
}
.lp-more a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--lp-blue);
  text-decoration: none;
}
.lp-more a:hover { text-decoration: underline; }

/* -----------------------------------------------------------------------------
   5. 문의 섹션
   -------------------------------------------------------------------------- */
.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: start;
}
.lp-contact-info .lp-h2 { margin-bottom: 1rem; }
.lp-contact-info p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--lp-body);
}
.lp-flow {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.lp-flow li {
  position: relative;
  padding: 0 0 1.5rem 2.1rem;
  font-size: 0.9375rem;
  color: var(--lp-body);
}
.lp-flow li:last-child { padding-bottom: 0; }
.lp-flow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid var(--lp-blue);
  background: #fff;
}
.lp-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 19px;
  bottom: 3px;
  width: 2px;
  background: var(--lp-line);
}
.lp-flow li strong {
  display: block;
  color: var(--lp-ink);
  font-weight: 700;
}

.lp-form-card {
  padding: 2.25rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
.lp-form-card .form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--lp-ink);
}
.lp-form-card .form-label .req { color: #DC2626; }
.lp-form-card .form-control,
.lp-form-card .form-select {
  border-color: var(--lp-line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9375rem;
}
.lp-form-card .form-control:focus,
.lp-form-card .form-select:focus {
  border-color: var(--lp-blue);
  box-shadow: 0 0 0 0.2rem rgba(14, 103, 219, 0.12);
}
.lp-form-card .btn-submit {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  border-radius: 10px;
  background: var(--lp-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.lp-form-card .btn-submit:hover { background: #1276F0; transform: translateY(-1px); }
.lp-form-card .btn-submit:disabled { background: #94A3B8; transform: none; cursor: not-allowed; }
.lp-form-hint {
  margin: 0.9rem 0 0;
  font-size: 0.8125rem;
  color: var(--lp-muted);
  text-align: center;
}

/* 로그인 없이 문의하기 — 비로그인 방문자용 외부 문의 페이지 바로가기 */
.lp-or {
  position: relative;
  margin: 1.5rem 0;
  text-align: center;
}
.lp-or::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--lp-line);
}
.lp-or span {
  position: relative;
  padding: 0 0.75rem;
  background: #fff;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}
.lp-form-card .btn-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--lp-blue);
  border-radius: 10px;
  background: #fff;
  color: var(--lp-blue);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.lp-form-card .btn-alt:hover {
  background: #EFF6FF;
  color: var(--lp-blue);
  transform: translateY(-1px);
  text-decoration: none;
}
.lp-form-card .btn-alt i { font-size: 0.875rem; }
.lp-login-notice {
  display: flex;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  background: #EFF6FF;
  font-size: 0.875rem;
  color: #1E40AF;
}

/* -----------------------------------------------------------------------------
   반응형
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .lp-hero { padding: calc(var(--lp-nav-h) + 3.5rem) 0 3.5rem; }
  .lp-section { padding: 4rem 0; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -1rem;
    transform: translateX(50%) rotate(135deg);
  }
  .lp-contact-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}
@media (max-width: 575px) {
  .lp-stats { grid-template-columns: 1fr; }
  .lp-cta .lp-btn { width: 100%; justify-content: center; }
  .lp-form-card { padding: 1.5rem; }
}
