/* ============================================================
   Landing Page Sections v2 — CSS Variable Theme System

   다크: 기본값 (클래스에 직접 정의)
   라이트: [data-theme="light"] 오버라이드
   ============================================================ */

/* ── 공통 ── */
.lp-eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
  color: var(--faq-accent);
}
/* 애니메이션 초기 상태는 application.css에서 정의, 여기서는 오버라이드하지 않음 */

/* ============================================================
   FAQ 1 — 아코디언
   ============================================================ */
.lp-faq1 {
  --faq-bg: #0f172a;
  --faq-card-bg: #1e293b;
  --faq-text: #fff;
  --faq-subtext: #9ca3af;
  --faq-accent: #a3e635;
  --faq-border: rgba(163,230,53,.08);
  padding: 80px 24px;
  background: var(--faq-bg);
}
.lp-faq1[data-theme="light"] {
  --faq-bg: #fafafa;
  --faq-card-bg: #fff;
  --faq-text: #111827;
  --faq-subtext: #6b7280;
  --faq-accent: #65a30d;
  --faq-border: rgba(101,163,13,.08);
}
.lp-faq1-inner { max-width: 760px; margin: 0 auto; }
.lp-faq1-header { text-align: center; margin-bottom: 48px; }
.lp-faq1-title { font-size: 32px; font-weight: 900; color: var(--faq-text); margin: 12px 0 0; }
.lp-faq1-sub { font-size: 18px; color: var(--faq-subtext); margin-top: 12px; }
.lp-faq1-list { display: flex; flex-direction: column; gap: 12px; }
.lp-faq1-item {
  background: var(--faq-card-bg); border-radius: 14px;
  overflow: hidden; transition: box-shadow .3s;
}
.lp-faq1-item[open] { box-shadow: 0 0 0 1px var(--faq-accent), 0 8px 24px var(--faq-border); }
.lp-faq1-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; list-style: none;
}
.lp-faq1-item summary::-webkit-details-marker { display: none; }
.lp-faq1-q { font-size: 18px; font-weight: 700; color: var(--faq-text); }
.lp-faq1-icon { font-size: 22px; color: var(--faq-accent); font-weight: 300; transition: transform .3s; }
.lp-faq1-item[open] .lp-faq1-icon { transform: rotate(45deg); }
.lp-faq1-a { padding: 0 24px 20px; }
.lp-faq1-a p { font-size: 16px; color: var(--faq-subtext); line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .lp-faq1 { padding: 56px 16px; }
  .lp-faq1-title { font-size: 24px; }
}

/* ============================================================
   FAQ 2 — 넘버링 카드
   ============================================================ */
.lp-faq2 {
  --faq-bg: #111827;
  --faq-card-bg: #1e293b;
  --faq-text: #fff;
  --faq-subtext: #9ca3af;
  --faq-accent: #a3e635;
  --faq-shadow: rgba(0,0,0,.3);
  padding: 80px 24px;
  background: var(--faq-bg);
}
.lp-faq2[data-theme="light"] {
  --faq-bg: #fafafa;
  --faq-card-bg: #fff;
  --faq-text: #111827;
  --faq-subtext: #6b7280;
  --faq-accent: #65a30d;
  --faq-shadow: rgba(0,0,0,.1);
}
.lp-faq2-inner { max-width: 960px; margin: 0 auto; }
.lp-faq2-header { text-align: center; margin-bottom: 48px; }
.lp-faq2-title { font-size: 32px; font-weight: 900; color: var(--faq-text); margin: 12px 0 0; }
.lp-faq2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-faq2-card {
  background: var(--faq-card-bg); border-radius: 16px; padding: 28px 24px;
  transition: transform .3s, box-shadow .3s; border-left: 3px solid transparent;
}
.lp-faq2-card:hover { transform: translateY(-4px); border-left-color: var(--faq-accent); box-shadow: 0 12px 32px var(--faq-shadow); }
.lp-faq2-num { font-size: 28px; font-weight: 900; color: var(--faq-accent); display: block; margin-bottom: 12px; line-height: 1; }
.lp-faq2-card h3 { font-size: 18px; font-weight: 800; color: var(--faq-text); margin: 0 0 8px; }
.lp-faq2-card p { font-size: 15px; color: var(--faq-subtext); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .lp-faq2-grid { grid-template-columns: 1fr; }
  .lp-faq2 { padding: 56px 16px; }
  .lp-faq2-title { font-size: 24px; }
}

/* ============================================================
   FAQ 3 — 이미지 분할
   ============================================================ */
.lp-faq3 {
  --faq-bg: #111827;
  --faq-card-bg: #1e293b;
  --faq-text: #fff;
  --faq-subtext: #9ca3af;
  --faq-accent: #a3e635;
  background: var(--faq-bg);
}
.lp-faq3[data-theme="light"] {
  --faq-bg: #fafafa;
  --faq-card-bg: #fff;
  --faq-text: #111827;
  --faq-subtext: #6b7280;
  --faq-accent: #65a30d;
}
.lp-faq3-inner { display: flex; max-width: 1200px; margin: 0 auto; min-height: 480px; }
.lp-faq3-photo { flex: 1; overflow: hidden; position: relative; }
.lp-faq3-photo img { width: 100%; height: 100%; object-fit: cover; }
.lp-faq3-content { flex: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.lp-faq3-title { font-size: 28px; font-weight: 900; color: var(--faq-text); margin: 12px 0 0; line-height: 1.3; }
.lp-faq3-list { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.lp-faq3-item {
  background: var(--faq-card-bg); border-radius: 12px;
  overflow: hidden; transition: box-shadow .3s;
}
.lp-faq3-item[open] { box-shadow: inset 0 0 0 1px var(--faq-accent); }
.lp-faq3-item summary {
  padding: 14px 18px; font-size: 15px; font-weight: 700; color: var(--faq-text);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.lp-faq3-item summary::-webkit-details-marker { display: none; }
.lp-faq3-item summary .faq-icon { color: var(--faq-accent); font-size: 20px; transition: transform .3s; }
.lp-faq3-item[open] summary .faq-icon { transform: rotate(45deg); }
.lp-faq3-item p { padding: 0 18px 14px; font-size: 15px; color: var(--faq-subtext); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .lp-faq3-inner { flex-direction: column; }
  .lp-faq3-photo { height: 220px; }
  .lp-faq3-content { padding: 32px 20px; }
  .lp-faq3-title { font-size: 22px; }
}

/* ============================================================
   FAQ 4 — 2컬럼 분할 (Notion/Linear 스타일)
   좌: 타이틀 + CTA (sticky)  |  우: 아코디언
   ============================================================ */
.lp-faq4 {
  --faq-bg: #0f172a;
  --faq-card-bg: #1e293b;
  --faq-text: #fff;
  --faq-subtext: #94a3b8;
  --faq-accent: #a3e635;
  --faq-border: rgba(163,230,53,.08);
  padding: 80px 24px;
  background: var(--faq-bg);
}
.lp-faq4[data-theme="light"] {
  --faq-bg: #fafafa;
  --faq-card-bg: #fff;
  --faq-text: #111827;
  --faq-subtext: #6b7280;
  --faq-accent: #65a30d;
  --faq-border: rgba(101,163,13,.08);
}
.lp-faq4-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.lp-faq4-left { position: sticky; top: 80px; }
.lp-faq4-title { font-size: 36px; font-weight: 900; color: var(--faq-text); margin: 12px 0 0; line-height: 1.25; }
.lp-faq4-sub { font-size: 17px; color: var(--faq-subtext); margin-top: 16px; line-height: 1.6; }
.lp-faq4-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: var(--faq-accent); color: #111; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.lp-faq4-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(163,230,53,.25); }
.lp-faq4-cta svg { width: 18px; height: 18px; }
.lp-faq4-list { display: flex; flex-direction: column; gap: 0; }
.lp-faq4-item { border-bottom: 1px solid var(--faq-border); }
.lp-faq4-item:first-child { border-top: 1px solid var(--faq-border); }
.lp-faq4-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; cursor: pointer; list-style: none;
}
.lp-faq4-item summary::-webkit-details-marker { display: none; }
.lp-faq4-q { font-size: 17px; font-weight: 700; color: var(--faq-text); }
.lp-faq4-icon {
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--faq-accent); background: var(--faq-card-bg); transition: transform .3s;
}
.lp-faq4-item[open] .lp-faq4-icon { transform: rotate(45deg); }
.lp-faq4-a { padding: 0 4px 22px; }
.lp-faq4-a p { font-size: 15px; color: var(--faq-subtext); line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .lp-faq4 { padding: 56px 16px; }
  .lp-faq4-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-faq4-left { position: static; }
  .lp-faq4-title { font-size: 26px; }
}

/* ============================================================
   FAQ 5 — 글래스모피즘 (럭셔리 다크)
   그라디언트 배경 + 반투명 유리 카드
   ============================================================ */
.lp-faq5 {
  --faq-text: #fff;
  --faq-subtext: rgba(255,255,255,.65);
  --faq-accent: #a3e635;
  --faq-glass: rgba(255,255,255,.06);
  --faq-glass-border: rgba(255,255,255,.1);
  --faq-glass-hover: rgba(255,255,255,.1);
  padding: 96px 24px;
  background: #0a0a0f;
  position: relative; overflow: hidden;
}
.lp-faq5::before {
  content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.35) 0%, transparent 70%);
  top: -200px; left: -100px; pointer-events: none;
}
.lp-faq5::after {
  content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.25) 0%, transparent 70%);
  bottom: -150px; right: -100px; pointer-events: none;
}
.lp-faq5[data-theme="light"] {
  --faq-text: #111827;
  --faq-subtext: #6b7280;
  --faq-accent: #65a30d;
  --faq-glass: rgba(255,255,255,.85);
  --faq-glass-border: rgba(0,0,0,.08);
  --faq-glass-hover: rgba(255,255,255,.95);
  background: #f0f4f8;
}
.lp-faq5[data-theme="light"]::before {
  background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
}
.lp-faq5[data-theme="light"]::after {
  background: radial-gradient(circle, rgba(59,130,246,.06) 0%, transparent 70%);
}
.lp-faq5-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.lp-faq5-header { text-align: center; margin-bottom: 56px; }
.lp-faq5-title { font-size: 36px; font-weight: 900; color: var(--faq-text); margin: 12px 0 0; }
.lp-faq5-sub { font-size: 17px; color: var(--faq-subtext); margin-top: 12px; }
.lp-faq5-list { display: flex; flex-direction: column; gap: 12px; }
.lp-faq5-item {
  background: var(--faq-glass);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--faq-glass-border); border-radius: 16px;
  overflow: hidden; transition: background .3s, border-color .3s;
}
.lp-faq5-item[open] { background: var(--faq-glass-hover); border-color: var(--faq-accent); }
.lp-faq5-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; cursor: pointer; list-style: none;
}
.lp-faq5-item summary::-webkit-details-marker { display: none; }
.lp-faq5-q { font-size: 17px; font-weight: 700; color: var(--faq-text); }
.lp-faq5-icon {
  font-size: 20px; color: var(--faq-accent); font-weight: 300;
  transition: transform .3s;
}
.lp-faq5-item[open] .lp-faq5-icon { transform: rotate(45deg); }
.lp-faq5-a { padding: 0 24px 22px; }
.lp-faq5-a p { font-size: 15px; color: var(--faq-subtext); line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .lp-faq5 { padding: 64px 16px; }
  .lp-faq5-title { font-size: 26px; }
  .lp-faq5::before { width: 300px; height: 300px; }
  .lp-faq5::after { width: 250px; height: 250px; }
}

/* ============================================================
   FAQ 6 — 타임라인 (분양 절차 특화)
   좌측 번호 서클 + 수직 연결선
   ============================================================ */
.lp-faq6 {
  --faq-bg: #0f172a;
  --faq-text: #fff;
  --faq-subtext: #94a3b8;
  --faq-accent: #a3e635;
  --faq-line: rgba(163,230,53,.15);
  --faq-num-bg: rgba(163,230,53,.12);
  padding: 80px 24px;
  background: var(--faq-bg);
}
.lp-faq6[data-theme="light"] {
  --faq-bg: #fafafa;
  --faq-text: #111827;
  --faq-subtext: #6b7280;
  --faq-accent: #65a30d;
  --faq-line: rgba(101,163,13,.2);
  --faq-num-bg: rgba(101,163,13,.08);
}
.lp-faq6-inner { max-width: 720px; margin: 0 auto; }
.lp-faq6-header { text-align: center; margin-bottom: 56px; }
.lp-faq6-title { font-size: 32px; font-weight: 900; color: var(--faq-text); margin: 12px 0 0; }
.lp-faq6-sub { font-size: 17px; color: var(--faq-subtext); margin-top: 12px; }
.lp-faq6-list { position: relative; padding-left: 52px; }
.lp-faq6-list::before {
  content: ""; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
  background: var(--faq-line);
}
.lp-faq6-item { position: relative; padding-bottom: 8px; }
.lp-faq6-item:last-child { padding-bottom: 0; }
.lp-faq6-num {
  position: absolute; left: -52px; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: var(--faq-accent);
  background: var(--faq-num-bg); border: 2px solid var(--faq-accent);
  z-index: 1;
}
.lp-faq6-item[open] .lp-faq6-num { background: var(--faq-accent); color: #111; }
.lp-faq6-item summary {
  display: flex; align-items: center; min-height: 42px;
  padding: 10px 0; cursor: pointer; list-style: none;
}
.lp-faq6-item summary::-webkit-details-marker { display: none; }
.lp-faq6-q { font-size: 17px; font-weight: 700; color: var(--faq-text); }
.lp-faq6-a { padding: 4px 0 20px; }
.lp-faq6-a p { font-size: 15px; color: var(--faq-subtext); line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .lp-faq6 { padding: 56px 16px; }
  .lp-faq6-title { font-size: 24px; }
  .lp-faq6-list { padding-left: 44px; }
  .lp-faq6-num { left: -44px; width: 36px; height: 36px; font-size: 13px; }
  .lp-faq6-list::before { left: 17px; }
}

/* ============================================================
   FAQ 7 — 미니멀 디바이더 (Apple/Stripe 스타일)
   보더리스, 얇은 라인 구분, 극도의 절제미
   ============================================================ */
.lp-faq7 {
  --faq-bg: #0f172a;
  --faq-text: #fff;
  --faq-subtext: #94a3b8;
  --faq-accent: #a3e635;
  --faq-divider: rgba(255,255,255,.08);
  padding: 80px 24px;
  background: var(--faq-bg);
}
.lp-faq7[data-theme="light"] {
  --faq-bg: #fff;
  --faq-text: #111827;
  --faq-subtext: #6b7280;
  --faq-accent: #65a30d;
  --faq-divider: #e5e7eb;
}
.lp-faq7-inner { max-width: 680px; margin: 0 auto; }
.lp-faq7-header { text-align: center; margin-bottom: 56px; }
.lp-faq7-title { font-size: 32px; font-weight: 900; color: var(--faq-text); margin: 12px 0 0; }
.lp-faq7-sub { font-size: 17px; color: var(--faq-subtext); margin-top: 12px; }
.lp-faq7-list { display: flex; flex-direction: column; }
.lp-faq7-item { border-top: 1px solid var(--faq-divider); }
.lp-faq7-item:last-child { border-bottom: 1px solid var(--faq-divider); }
.lp-faq7-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; list-style: none;
}
.lp-faq7-item summary::-webkit-details-marker { display: none; }
.lp-faq7-q { font-size: 18px; font-weight: 600; color: var(--faq-text); transition: color .2s; }
.lp-faq7-item[open] .lp-faq7-q { color: var(--faq-accent); }
.lp-faq7-icon {
  width: 24px; height: 24px; position: relative; flex-shrink: 0; margin-left: 16px;
}
.lp-faq7-icon::before, .lp-faq7-icon::after {
  content: ""; position: absolute; background: var(--faq-subtext);
  left: 50%; top: 50%; transform: translate(-50%, -50%); transition: transform .3s, opacity .3s;
}
.lp-faq7-icon::before { width: 14px; height: 1.5px; }
.lp-faq7-icon::after { width: 1.5px; height: 14px; }
.lp-faq7-item[open] .lp-faq7-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.lp-faq7-a { padding: 0 0 24px; }
.lp-faq7-a p { font-size: 16px; color: var(--faq-subtext); line-height: 1.8; margin: 0; }
@media (max-width: 768px) {
  .lp-faq7 { padding: 56px 16px; }
  .lp-faq7-title { font-size: 24px; }
  .lp-faq7-item summary { padding: 20px 0; }
  .lp-faq7-q { font-size: 16px; }
}


/* ************************************************************
   FEATURES (특장점) V2 TEMPLATES
   ************************************************************ */

/* ── 공통 eyebrow (features용) ── */
.lp-feat-eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
  color: var(--feat-accent);
}

/* ============================================================
   FEAT 1 — 아이콘 그리드 (3열)
   이모지 + 제목 + 설명, 가장 범용적
   ============================================================ */
.lp-feat1 {
  --feat-bg: #0f172a;
  --feat-card-bg: #1e293b;
  --feat-text: #fff;
  --feat-subtext: #94a3b8;
  --feat-accent: #a3e635;
  padding: 80px 24px;
  background: var(--feat-bg);
}
.lp-feat1[data-theme="light"] {
  --feat-bg: #fafafa;
  --feat-card-bg: #fff;
  --feat-text: #111827;
  --feat-subtext: #6b7280;
  --feat-accent: #65a30d;
}
.lp-feat1-inner { max-width: 1100px; margin: 0 auto; }
.lp-feat1-header { text-align: center; margin-bottom: 56px; }
.lp-feat1-title { font-size: 32px; font-weight: 900; color: var(--feat-text); margin: 12px 0 0; }
.lp-feat1-sub { font-size: 17px; color: var(--feat-subtext); margin-top: 12px; }
.lp-feat1-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-feat1-card {
  background: var(--feat-card-bg); border-radius: 16px; padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
}
.lp-feat1-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.lp-feat1-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.lp-feat1-card h3 { font-size: 19px; font-weight: 800; color: var(--feat-text); margin: 0 0 8px; }
.lp-feat1-card p { font-size: 15px; color: var(--feat-subtext); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .lp-feat1 { padding: 56px 16px; }
  .lp-feat1-grid { grid-template-columns: 1fr; }
  .lp-feat1-title { font-size: 24px; }
}

/* ============================================================
   FEAT 2 — 지그재그 (이미지+텍스트 좌우 교대)
   홀수행: 이미지 좌 + 텍스트 우  |  짝수행: 텍스트 좌 + 이미지 우
   ============================================================ */
.lp-feat2 {
  --feat-bg: #0f172a; --feat-text: #fff; --feat-subtext: #94a3b8; --feat-accent: #a3e635;
  padding: 80px 24px; background: var(--feat-bg);
}
.lp-feat2[data-theme="light"] { --feat-bg: #fafafa; --feat-text: #111827; --feat-subtext: #6b7280; --feat-accent: #65a30d; }
.lp-feat2-inner { max-width: 1100px; margin: 0 auto; }
.lp-feat2-header { text-align: center; margin-bottom: 64px; }
.lp-feat2-title { font-size: 36px; font-weight: 900; color: var(--feat-text); margin: 12px 0 0; }
.lp-feat2-sub { font-size: 17px; color: var(--feat-subtext); margin-top: 12px; }
.lp-feat2-list { display: flex; flex-direction: column; gap: 48px; }
.lp-feat2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lp-feat2-row:nth-child(even) { direction: rtl; }
.lp-feat2-row:nth-child(even) > * { direction: ltr; }
.lp-feat2-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.lp-feat2-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-feat2-text { }
.lp-feat2-num { font-size: 14px; font-weight: 800; color: var(--feat-accent); letter-spacing: 2px; margin-bottom: 12px; }
.lp-feat2-row h3 { font-size: 26px; font-weight: 900; color: var(--feat-text); margin: 0 0 12px; line-height: 1.3; }
.lp-feat2-row p { font-size: 16px; color: var(--feat-subtext); margin: 0; line-height: 1.7; }
@media (max-width: 768px) {
  .lp-feat2 { padding: 56px 16px; }
  .lp-feat2-row { grid-template-columns: 1fr; gap: 20px; }
  .lp-feat2-row:nth-child(even) { direction: ltr; }
  .lp-feat2-row h3 { font-size: 22px; }
  .lp-feat2-title { font-size: 26px; }
}

/* ============================================================
   FEAT 3 — 풀블리드 이미지카드 (세로 스택)
   전체 너비 카드, 배경 이미지 + 그라디언트 오버레이 + 텍스트
   ============================================================ */
.lp-feat3 {
  --feat-accent: #a3e635;
  padding: 80px 24px; background: #0f172a;
}
.lp-feat3[data-theme="light"] { --feat-accent: #65a30d; background: #fafafa; }
.lp-feat3-inner { max-width: 1100px; margin: 0 auto; }
.lp-feat3-header { text-align: center; margin-bottom: 48px; }
.lp-feat3-title { font-size: 32px; font-weight: 900; color: #fff; margin: 12px 0 0; }
.lp-feat3[data-theme="light"] .lp-feat3-title { color: #111827; }
.lp-feat3-sub { font-size: 17px; color: #94a3b8; margin-top: 12px; }
.lp-feat3[data-theme="light"] .lp-feat3-sub { color: #6b7280; }
.lp-feat3-list { display: flex; flex-direction: column; gap: 16px; }
.lp-feat3-card {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 280px;
  display: flex; align-items: flex-end;
}
.lp-feat3-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-feat3-overlay {
  position: relative; z-index: 1; width: 100%; padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.lp-feat3-card h3 { font-size: 24px; font-weight: 900; color: #fff; margin: 0 0 8px; }
.lp-feat3-card p { font-size: 16px; color: rgba(255,255,255,.8); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .lp-feat3 { padding: 56px 16px; }
  .lp-feat3-card { min-height: 220px; }
  .lp-feat3-card h3 { font-size: 20px; }
  .lp-feat3-title { font-size: 24px; }
}

/* ============================================================
   FEAT 4 — 이미지+리스트 분할
   좌: 큰 이미지 (sticky)  |  우: 특장점 리스트
   ============================================================ */
.lp-feat4 {
  --feat-bg: #0f172a; --feat-card-bg: #1e293b; --feat-text: #fff; --feat-subtext: #94a3b8; --feat-accent: #a3e635;
  padding: 80px 24px; background: var(--feat-bg);
}
.lp-feat4[data-theme="light"] { --feat-bg: #fafafa; --feat-card-bg: #fff; --feat-text: #111827; --feat-subtext: #6b7280; --feat-accent: #65a30d; }
.lp-feat4-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lp-feat4-photo { position: sticky; top: 80px; border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; }
.lp-feat4-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-feat4-right { }
.lp-feat4-header { margin-bottom: 32px; }
.lp-feat4-title { font-size: 32px; font-weight: 900; color: var(--feat-text); margin: 12px 0 0; line-height: 1.3; }
.lp-feat4-sub { font-size: 17px; color: var(--feat-subtext); margin-top: 12px; }
.lp-feat4-list { display: flex; flex-direction: column; gap: 12px; }
.lp-feat4-item {
  background: var(--feat-card-bg); border-radius: 14px; padding: 20px;
  border-left: 3px solid transparent; transition: border-color .3s;
}
.lp-feat4-item:hover { border-left-color: var(--feat-accent); }
.lp-feat4-item h3 { font-size: 17px; font-weight: 700; color: var(--feat-text); margin: 0 0 6px; }
.lp-feat4-item p { font-size: 15px; color: var(--feat-subtext); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .lp-feat4 { padding: 56px 16px; }
  .lp-feat4-inner { grid-template-columns: 1fr; gap: 24px; }
  .lp-feat4-photo { position: static; aspect-ratio: 16/9; }
  .lp-feat4-title { font-size: 24px; }
}

/* ============================================================
   FEAT 5 — 넘버링 카드 (2열)
   대형 번호 + 제목 + 설명
   ============================================================ */
.lp-feat5 {
  --feat-bg: #0f172a; --feat-card-bg: #1e293b; --feat-text: #fff; --feat-subtext: #94a3b8; --feat-accent: #a3e635;
  padding: 80px 24px; background: var(--feat-bg);
}
.lp-feat5[data-theme="light"] { --feat-bg: #fafafa; --feat-card-bg: #fff; --feat-text: #111827; --feat-subtext: #6b7280; --feat-accent: #65a30d; }
.lp-feat5-inner { max-width: 960px; margin: 0 auto; }
.lp-feat5-header { text-align: center; margin-bottom: 56px; }
.lp-feat5-title { font-size: 32px; font-weight: 900; color: var(--feat-text); margin: 12px 0 0; }
.lp-feat5-sub { font-size: 17px; color: var(--feat-subtext); margin-top: 12px; }
.lp-feat5-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-feat5-card {
  background: var(--feat-card-bg); border-radius: 16px; padding: 28px 24px;
  border-left: 3px solid transparent; transition: border-color .3s, transform .3s;
}
.lp-feat5-card:hover { border-left-color: var(--feat-accent); transform: translateY(-2px); }
.lp-feat5-num { font-size: 36px; font-weight: 900; color: var(--feat-accent); line-height: 1; margin-bottom: 12px; display: block; }
.lp-feat5-card h3 { font-size: 18px; font-weight: 800; color: var(--feat-text); margin: 0 0 8px; }
.lp-feat5-card p { font-size: 15px; color: var(--feat-subtext); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .lp-feat5 { padding: 56px 16px; } .lp-feat5-grid { grid-template-columns: 1fr; } .lp-feat5-title { font-size: 24px; }
}

/* ============================================================
   FEAT 6 — 벤토 이미지 그리드
   첫 카드 2x1 (넓음, 배경 이미지), 나머지 1x1
   ============================================================ */
.lp-feat6 {
  --feat-bg: #0f172a; --feat-card-bg: #1e293b; --feat-text: #fff; --feat-subtext: #94a3b8; --feat-accent: #a3e635;
  padding: 80px 24px; background: var(--feat-bg);
}
.lp-feat6[data-theme="light"] { --feat-bg: #fafafa; --feat-card-bg: #fff; --feat-text: #111827; --feat-subtext: #6b7280; --feat-accent: #65a30d; }
.lp-feat6-inner { max-width: 1100px; margin: 0 auto; }
.lp-feat6-header { text-align: center; margin-bottom: 56px; }
.lp-feat6-title { font-size: 32px; font-weight: 900; color: var(--feat-text); margin: 12px 0 0; }
.lp-feat6-sub { font-size: 17px; color: var(--feat-subtext); margin-top: 12px; }
.lp-feat6-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-feat6-card {
  position: relative; border-radius: 16px; overflow: hidden; min-height: 200px;
  display: flex; align-items: flex-end;
}
.lp-feat6-card.is-wide { grid-column: span 2; min-height: 260px; }
.lp-feat6-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-feat6-card-overlay {
  position: relative; z-index: 1; width: 100%; padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 70%, transparent 100%);
}
.lp-feat6-card h3 { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.lp-feat6-card.is-wide h3 { font-size: 24px; }
.lp-feat6-card p { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
  .lp-feat6 { padding: 56px 16px; }
  .lp-feat6-grid { grid-template-columns: 1fr; }
  .lp-feat6-card.is-wide { grid-column: span 1; }
  .lp-feat6-title { font-size: 24px; }
}


/* ************************************************************
   CHECKLIST (체크리스트) V2 TEMPLATES
   ************************************************************ */

/* ============================================================
   CHECK 1 — 배경 이미지 + 체크리스트 오버레이
   전체 섹션 배경 이미지 위에 반투명 체크 항목
   ============================================================ */
.lp-check1 {
  --c-accent: #a3e635;
  position: relative; padding: 80px 24px; min-height: 500px;
  display: flex; align-items: center;
}
.lp-check1-bg { position: absolute; inset: 0; }
.lp-check1-bg img { width: 100%; height: 100%; object-fit: cover; }
.lp-check1-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.lp-check1[data-theme="light"] .lp-check1-bg::after { background: rgba(255,255,255,.85); }
.lp-check1-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.lp-check1-header { margin-bottom: 40px; }
.lp-check1-title { font-size: 32px; font-weight: 900; color: #fff; margin: 12px 0 0; }
.lp-check1[data-theme="light"] .lp-check1-title { color: #111827; }
.lp-check1-sub { font-size: 17px; color: rgba(255,255,255,.7); margin-top: 12px; }
.lp-check1[data-theme="light"] .lp-check1-sub { color: #6b7280; }
.lp-check1-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-check1-card {
  display: flex; gap: 12px; align-items: center; padding: 16px 20px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
}
.lp-check1[data-theme="light"] .lp-check1-card { background: rgba(255,255,255,.9); border-color: rgba(0,0,0,.08); }
.lp-check1-icon { font-size: 18px; color: var(--c-accent); flex-shrink: 0; }
.lp-check1-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin: 0; }
.lp-check1[data-theme="light"] .lp-check1-card h3 { color: #111827; }
.lp-check1-card p { display: none; }
@media (max-width: 768px) {
  .lp-check1 { padding: 56px 16px; } .lp-check1-grid { grid-template-columns: 1fr; } .lp-check1-title { font-size: 24px; }
}

/* ============================================================
   CHECK 2 — 이미지 + 체크리스트 분할
   좌: 큰 이미지  |  우: 체크 항목 리스트
   ============================================================ */
.lp-check2 {
  --c-bg: #0f172a; --c-text: #fff; --c-sub: #94a3b8; --c-accent: #a3e635; --c-card: #1e293b;
  padding: 80px 24px; background: var(--c-bg);
}
.lp-check2[data-theme="light"] { --c-bg: #fafafa; --c-text: #111827; --c-sub: #6b7280; --c-accent: #65a30d; --c-card: #fff; }
.lp-check2-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lp-check2-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.lp-check2-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-check2-right { }
.lp-check2-title { font-size: 32px; font-weight: 900; color: var(--c-text); margin: 0 0 8px; line-height: 1.3; }
.lp-check2-sub { font-size: 17px; color: var(--c-sub); margin-bottom: 28px; }
.lp-check2-list { display: flex; flex-direction: column; gap: 10px; }
.lp-check2-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: var(--c-card); border-radius: 12px; }
.lp-check2-icon { font-size: 16px; flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: rgba(163,230,53,.12); border-radius: 50%; color: var(--c-accent); }
.lp-check2-content h3 { font-size: 15px; font-weight: 700; color: var(--c-text); margin: 0 0 2px; }
.lp-check2-content p { font-size: 13px; color: var(--c-sub); margin: 0; }
@media (max-width: 768px) {
  .lp-check2 { padding: 56px 16px; } .lp-check2-inner { grid-template-columns: 1fr; gap: 24px; } .lp-check2-title { font-size: 24px; }
}

/* ============================================================
   CHECK 3 — 이미지 카드 체크 (각 항목에 이미지)
   카드마다 작은 이미지 + 체크 텍스트
   ============================================================ */
.lp-check3 {
  --c-bg: #0f172a; --c-card: #1e293b; --c-text: #fff; --c-sub: #94a3b8; --c-accent: #a3e635;
  padding: 80px 24px; background: var(--c-bg);
}
.lp-check3[data-theme="light"] { --c-bg: #fafafa; --c-card: #fff; --c-text: #111827; --c-sub: #6b7280; --c-accent: #65a30d; }
.lp-check3-inner { max-width: 1100px; margin: 0 auto; }
.lp-check3-header { text-align: center; margin-bottom: 48px; }
.lp-check3-title { font-size: 32px; font-weight: 900; color: var(--c-text); margin: 12px 0 0; }
.lp-check3-sub { font-size: 17px; color: var(--c-sub); margin-top: 12px; }
.lp-check3-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.lp-check3-card { background: var(--c-card); border-radius: 16px; overflow: hidden; transition: transform .3s; }
.lp-check3-card:hover { transform: translateY(-4px); }
.lp-check3-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.lp-check3-card-body { padding: 20px; }
.lp-check3-card h3 { font-size: 17px; font-weight: 700; color: var(--c-text); margin: 0 0 6px; }
.lp-check3-card p { font-size: 14px; color: var(--c-sub); margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .lp-check3 { padding: 56px 16px; } .lp-check3-list { grid-template-columns: 1fr; } .lp-check3-title { font-size: 24px; } }

/* ============================================================
   CHECK 4 — 풀블리드 이미지 + 체크 오버레이 리스트
   큰 배경 이미지 위에 세로 체크 항목
   ============================================================ */
.lp-check4 {
  --c-accent: #a3e635;
  position: relative; padding: 80px 24px;
}
.lp-check4-bg { position: absolute; inset: 0; }
.lp-check4-bg img { width: 100%; height: 100%; object-fit: cover; }
.lp-check4-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 100%); }
.lp-check4[data-theme="light"] .lp-check4-bg::after { background: linear-gradient(135deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.75) 100%); }
.lp-check4-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.lp-check4-header { margin-bottom: 40px; }
.lp-check4-title { font-size: 32px; font-weight: 900; color: #fff; margin: 12px 0 0; }
.lp-check4[data-theme="light"] .lp-check4-title { color: #111827; }
.lp-check4-sub { font-size: 17px; color: rgba(255,255,255,.7); margin-top: 12px; }
.lp-check4[data-theme="light"] .lp-check4-sub { color: #6b7280; }
.lp-check4-tags { display: flex; flex-direction: column; gap: 12px; }
.lp-check4-tag {
  display: flex; align-items: center; gap: 14px; padding: 18px 24px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 14px;
  font-size: 17px; font-weight: 700; color: #fff;
}
.lp-check4[data-theme="light"] .lp-check4-tag { background: rgba(255,255,255,.9); border-color: rgba(0,0,0,.08); color: #111827; }
.lp-check4-icon { font-size: 20px; color: var(--c-accent); flex-shrink: 0; }
@media (max-width: 768px) { .lp-check4 { padding: 56px 16px; } .lp-check4-title { font-size: 24px; } }


/* ************************************************************
   TIMELINE (타임라인) V2 TEMPLATES
   ************************************************************ */

/* ============================================================
   TIME 1 — 센터라인 타임라인
   수직 중앙선 + 좌우 교대 이미지 카드 + 노드
   ============================================================ */
.lp-time1 {
  --t-bg: #0f172a; --t-text: #fff; --t-sub: #94a3b8; --t-accent: #a3e635;
  --t-line: rgba(163,230,53,.2); --t-card: #1e293b;
  padding: 80px 24px; background: var(--t-bg);
}
.lp-time1[data-theme="light"] { --t-bg: #fafafa; --t-text: #111827; --t-sub: #6b7280; --t-accent: #65a30d; --t-line: rgba(101,163,13,.25); --t-card: #fff; }
.lp-time1-inner { max-width: 900px; margin: 0 auto; }
.lp-time1-header { text-align: center; margin-bottom: 64px; }
.lp-time1-title { font-size: 32px; font-weight: 900; color: var(--t-text); margin: 12px 0 0; }
.lp-time1-sub { font-size: 17px; color: var(--t-sub); margin-top: 12px; }
.lp-time1-list { position: relative; }
.lp-time1-list::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--t-line); transform: translateX(-50%);
}
.lp-time1-item {
  display: grid; grid-template-columns: 1fr 48px 1fr; gap: 0; align-items: start;
  margin-bottom: 40px; position: relative;
}
.lp-time1-item:last-child { margin-bottom: 0; }
/* 홀수: 왼쪽 이미지, 오른쪽 텍스트 */
.lp-time1-item:nth-child(odd) .lp-time1-img { grid-column: 1; }
.lp-time1-item:nth-child(odd) .lp-time1-content { grid-column: 3; padding-left: 16px; }
/* 짝수: 왼쪽 텍스트, 오른쪽 이미지 */
.lp-time1-item:nth-child(even) .lp-time1-img { grid-column: 3; }
.lp-time1-item:nth-child(even) .lp-time1-content { grid-column: 1; text-align: right; padding-right: 16px; }
.lp-time1-node {
  grid-column: 2; grid-row: 1; justify-self: center; align-self: start;
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: #111; background: var(--t-accent);
  z-index: 1; margin-top: 12px;
}
.lp-time1-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.lp-time1-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-time1-content { padding-top: 16px; }
.lp-time1-num { display: none; }
.lp-time1-content h3 { font-size: 20px; font-weight: 800; color: var(--t-text); margin: 0 0 8px; }
.lp-time1-content p { font-size: 15px; color: var(--t-sub); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .lp-time1 { padding: 56px 16px; } .lp-time1-title { font-size: 24px; }
  .lp-time1-list::before { left: 24px; }
  .lp-time1-item { grid-template-columns: 48px 1fr; }
  .lp-time1-item .lp-time1-img { grid-column: 2; margin-bottom: 12px; }
  .lp-time1-item .lp-time1-content { grid-column: 2; text-align: left; padding: 0; }
  .lp-time1-node { grid-column: 1; width: 36px; height: 36px; font-size: 12px; margin-top: 0; }
  .lp-time1-item:nth-child(even) .lp-time1-content { text-align: left; padding-right: 0; }
}

/* ============================================================
   TIME 2 — 수평 이미지 스텝
   이미지 카드 가로 나열, 모바일 세로
   ============================================================ */
.lp-time2 {
  --t-bg: #0f172a; --t-text: #fff; --t-sub: #94a3b8; --t-accent: #a3e635;
  padding: 80px 24px; background: var(--t-bg);
}
.lp-time2[data-theme="light"] { --t-bg: #fafafa; --t-text: #111827; --t-sub: #6b7280; --t-accent: #65a30d; }
.lp-time2-inner { max-width: 1100px; margin: 0 auto; }
.lp-time2-header { text-align: center; margin-bottom: 56px; }
.lp-time2-title { font-size: 32px; font-weight: 900; color: var(--t-text); margin: 12px 0 0; }
.lp-time2-sub { font-size: 17px; color: var(--t-sub); margin-top: 12px; }
.lp-time2-steps { display: flex; gap: 16px; }
.lp-time2-step { flex: 1; border-radius: 16px; overflow: hidden; position: relative; }
.lp-time2-step img { width: 100%; height: 200px; object-fit: cover; display: block; }
.lp-time2-step-body { padding: 20px; }
.lp-time2-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; margin-bottom: 12px;
  font-size: 14px; font-weight: 900; color: #111; background: var(--t-accent);
}
.lp-time2-step h3 { font-size: 17px; font-weight: 700; color: var(--t-text); margin: 0 0 6px; }
.lp-time2-step p { font-size: 14px; color: var(--t-sub); margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
  .lp-time2 { padding: 56px 16px; } .lp-time2-steps { flex-direction: column; } .lp-time2-title { font-size: 24px; }
}

/* ============================================================
   TIME 3 — 대형 이미지 스텝카드
   전체 너비 카드, 배경 이미지 + STEP 번호 오버레이 (세로 스택)
   ============================================================ */
.lp-time3 {
  --t-accent: #a3e635;
  padding: 80px 24px; background: #0f172a;
}
.lp-time3[data-theme="light"] { --t-accent: #65a30d; background: #fafafa; }
.lp-time3-inner { max-width: 1000px; margin: 0 auto; }
.lp-time3-header { text-align: center; margin-bottom: 48px; }
.lp-time3-title { font-size: 32px; font-weight: 900; color: #fff; margin: 12px 0 0; }
.lp-time3[data-theme="light"] .lp-time3-title { color: #111827; }
.lp-time3-sub { font-size: 17px; color: #94a3b8; margin-top: 12px; }
.lp-time3[data-theme="light"] .lp-time3-sub { color: #6b7280; }
.lp-time3-list { display: flex; flex-direction: column; gap: 16px; }
.lp-time3-item {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 240px;
  display: flex; align-items: flex-end;
}
.lp-time3-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-time3-overlay {
  position: relative; z-index: 1; width: 100%; padding: 28px 32px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  display: flex; align-items: flex-end; gap: 20px;
}
.lp-time3-num {
  font-size: 48px; font-weight: 900; color: var(--t-accent); line-height: 1;
  flex-shrink: 0; opacity: .6;
}
.lp-time3-text { flex: 1; }
.lp-time3-item h3 { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.lp-time3-item p { font-size: 15px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.5; }
@media (max-width: 768px) {
  .lp-time3 { padding: 56px 16px; } .lp-time3-title { font-size: 24px; }
  .lp-time3-item { min-height: 200px; }
  .lp-time3-num { font-size: 36px; }
}

/* ============================================================
   TIME 4 — 풀블리드 이미지 스텝
   배경 이미지 + 번호 오버레이 (세로 스택)
   ============================================================ */
.lp-time4 {
  --t-accent: #a3e635;
  padding: 80px 24px; background: #0f172a;
}
.lp-time4[data-theme="light"] { --t-accent: #65a30d; background: #fafafa; }
.lp-time4-inner { max-width: 1100px; margin: 0 auto; }
.lp-time4-header { text-align: center; margin-bottom: 48px; }
.lp-time4-title { font-size: 32px; font-weight: 900; color: #fff; margin: 12px 0 0; }
.lp-time4[data-theme="light"] .lp-time4-title { color: #111827; }
.lp-time4-sub { font-size: 17px; color: #94a3b8; margin-top: 12px; }
.lp-time4[data-theme="light"] .lp-time4-sub { color: #6b7280; }
.lp-time4-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.lp-time4-item {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 240px;
  display: flex; align-items: flex-end;
}
.lp-time4-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-time4-item-overlay {
  position: relative; z-index: 1; width: 100%; padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.lp-time4-step { font-size: 12px; font-weight: 800; letter-spacing: 2px; color: var(--t-accent); text-transform: uppercase; margin-bottom: 6px; }
.lp-time4-item h3 { font-size: 20px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.lp-time4-item p { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .lp-time4 { padding: 56px 16px; } .lp-time4-list { grid-template-columns: 1fr; } .lp-time4-title { font-size: 24px; } }


/* ************************************************************
   HERO V2 TEMPLATES
   ************************************************************ */

/* ============================================================
   Hero 1 — 풀스크린
   전체 배경 이미지 + 센터 텍스트
   ============================================================ */
.lp-hero1 {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; background: #111827;
}
.lp-hero1-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.lp-hero1-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
}
.lp-hero1-inner {
  position: relative; z-index: 1; max-width: 640px; padding: 40px 24px;
}
.lp-hero1-badge {
  display: inline-block; padding: 6px 16px; border: 1px solid rgba(163,230,53,.6);
  border-radius: 100px; font-size: 13px; color: #a3e635; margin-bottom: 20px;
}
.lp-hero1 h1 {
  font-size: 42px; font-weight: 800; line-height: 1.2; margin: 0 0 16px;
}
.lp-hero1-sub {
  font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.6; margin: 0;
}
/* Light */
.lp-hero1[data-theme="light"] { background: #f8fafc; }
.lp-hero1[data-theme="light"] .lp-hero1-bg { display: none; }
.lp-hero1[data-theme="light"] .lp-hero1-badge { border-color: #84cc16; color: #65a30d; }
.lp-hero1[data-theme="light"] h1 { color: #111827; }
.lp-hero1[data-theme="light"] .lp-hero1-sub { color: #6b7280; }
@media (max-width: 768px) {
  .lp-hero1 h1 { font-size: 28px; }
  .lp-hero1-sub { font-size: 15px; }
}

/* ============================================================
   Hero 2 — 좌우분할
   좌: 텍스트  |  우: 이미지
   ============================================================ */
.lp-hero2 {
  min-height: 100vh; display: flex; color: #fff; overflow: hidden; background: #111827;
}
.lp-hero2-text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 60px 48px; background: #111827;
}
.lp-hero2-loc {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #a3e635; margin: 0 0 16px;
}
.lp-hero2 h1 {
  font-size: 40px; font-weight: 800; line-height: 1.2; margin: 0 0 16px;
}
.lp-hero2-desc {
  font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 32px;
}
.lp-hero2-btn {
  display: inline-block; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: #a3e635; color: #111; text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.lp-hero2-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(163,230,53,.25); }
.lp-hero2-img {
  flex: 1; background-size: cover; background-position: center;
}
/* Light */
.lp-hero2[data-theme="light"] .lp-hero2-text { background: #fff; }
.lp-hero2[data-theme="light"] .lp-hero2-loc { color: #65a30d; }
.lp-hero2[data-theme="light"] h1 { color: #111827; }
.lp-hero2[data-theme="light"] .lp-hero2-desc { color: #6b7280; }
.lp-hero2[data-theme="light"] .lp-hero2-btn { background: #111827; color: #fff; }
@media (max-width: 768px) {
  .lp-hero2 { flex-direction: column-reverse; }
  .lp-hero2-img { min-height: 260px; }
  .lp-hero2-text { padding: 40px 24px; }
  .lp-hero2 h1 { font-size: 28px; }
}

/* ============================================================
   Hero 3 — 카운터
   배경 이미지 + 통계 카운터
   ============================================================ */
.lp-hero3 {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; background: #111827;
}
.lp-hero3-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.lp-hero3-overlay {
  position: absolute; inset: 0; background: rgba(17,24,39,.85);
}
.lp-hero3-inner {
  position: relative; z-index: 1; max-width: 720px; padding: 40px 24px;
}
.lp-hero3-badge {
  display: inline-block; padding: 6px 16px; border: 1px solid rgba(163,230,53,.6);
  border-radius: 100px; font-size: 13px; color: #a3e635; margin-bottom: 20px;
}
.lp-hero3 h1 {
  font-size: 42px; font-weight: 800; line-height: 1.2; margin: 0 0 16px;
}
.lp-hero3-sub {
  font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.6; margin: 0 0 40px;
}
.lp-hero3-stats {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.lp-hero3-stat {
  display: flex; flex-direction: column; align-items: center; padding: 0 28px;
}
.lp-hero3-num {
  font-size: 36px; font-weight: 900; color: #a3e635; line-height: 1;
}
.lp-hero3-label {
  font-size: 14px; color: rgba(255,255,255,.6); margin-top: 6px;
}
.lp-hero3-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,.15);
}
/* Light */
.lp-hero3[data-theme="light"] { background: #f8fafc; }
.lp-hero3[data-theme="light"] .lp-hero3-bg { display: none; }
.lp-hero3[data-theme="light"] .lp-hero3-badge { border-color: #84cc16; color: #65a30d; }
.lp-hero3[data-theme="light"] h1 { color: #111827; }
.lp-hero3[data-theme="light"] .lp-hero3-sub { color: #6b7280; }
.lp-hero3[data-theme="light"] .lp-hero3-num { color: #65a30d; }
.lp-hero3[data-theme="light"] .lp-hero3-label { color: #6b7280; }
.lp-hero3[data-theme="light"] .lp-hero3-divider { background: #e5e7eb; }
@media (max-width: 768px) {
  .lp-hero3 h1 { font-size: 28px; }
  .lp-hero3-stat { padding: 0 16px; }
  .lp-hero3-num { font-size: 28px; }
}

/* ============================================================
   Hero 4 — 시네마틱
   그래디언트 오버레이 + 스크롤 인디케이터
   ============================================================ */
.lp-hero4 {
  min-height: 100vh; position: relative; display: flex; flex-direction: column;
  color: #fff; overflow: hidden; background: #111827;
}
.lp-hero4-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.lp-hero4-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,.2) 100%);
}
.lp-hero4-inner {
  position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 60px 48px;
}
.lp-hero4-content { max-width: 640px; }
.lp-hero4-loc {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: #a3e635; margin: 0 0 16px;
}
.lp-hero4 h1 {
  font-size: 52px; font-weight: 900; line-height: 1.1; margin: 0 0 16px;
}
.lp-hero4-sub {
  font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 32px;
}
.lp-hero4-cta {
  display: inline-block; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: #a3e635; color: #111; text-decoration: none; transition: transform .2s;
}
.lp-hero4-cta:hover { transform: translateY(-2px); }
.lp-hero4-scroll {
  position: absolute; bottom: 32px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.lp-hero4-scroll span {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,.5);
}
.lp-hero4-arrow {
  width: 2px; height: 32px; background: rgba(255,255,255,.3); position: relative;
}
.lp-hero4-arrow::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5); transform: translateX(-50%) rotate(45deg);
}
/* Light */
.lp-hero4[data-theme="light"] { background: #f8fafc; }
.lp-hero4[data-theme="light"] .lp-hero4-bg {
  position: relative; inset: auto; height: 50vh; min-height: 300px;
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.lp-hero4[data-theme="light"] .lp-hero4-overlay { display: none; }
.lp-hero4[data-theme="light"] .lp-hero4-loc { color: #65a30d; }
.lp-hero4[data-theme="light"] h1 { color: #111827; }
.lp-hero4[data-theme="light"] .lp-hero4-sub { color: #6b7280; }
.lp-hero4[data-theme="light"] .lp-hero4-cta { background: #111827; color: #fff; }
.lp-hero4[data-theme="light"] .lp-hero4-scroll span { color: #9ca3af; }
.lp-hero4[data-theme="light"] .lp-hero4-arrow { background: #d1d5db; }
.lp-hero4[data-theme="light"] .lp-hero4-arrow::after { border-color: #9ca3af; }
@media (max-width: 768px) {
  .lp-hero4 h1 { font-size: 32px; }
  .lp-hero4-inner { padding: 40px 24px; }
  .lp-hero4-scroll { right: 24px; }
}

/* ============================================================
   Hero 5 — 카드오버랩
   배경 이미지 + 하단 글래스모피즘 카드
   ============================================================ */
.lp-hero5 {
  min-height: 100vh; position: relative; display: flex; flex-direction: column;
  justify-content: flex-end; color: #fff; overflow: hidden; background: #111827;
}
.lp-hero5-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.lp-hero5-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.15) 100%);
}
.lp-hero5-inner {
  position: relative; z-index: 1; padding: 60px 48px;
}
.lp-hero5-text { max-width: 640px; margin-bottom: 40px; }
.lp-hero5-badge {
  display: inline-block; padding: 6px 16px; border: 1px solid rgba(163,230,53,.6);
  border-radius: 100px; font-size: 13px; color: #a3e635; margin-bottom: 16px;
}
.lp-hero5 h1 {
  font-size: 42px; font-weight: 800; line-height: 1.2; margin: 0 0 12px;
}
.lp-hero5-sub {
  font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0;
}
.lp-hero5-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.lp-hero5-card {
  padding: 20px; border-radius: 14px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); text-align: center;
}
.lp-hero5-card-num {
  display: block; font-size: 28px; font-weight: 900; color: #a3e635; margin-bottom: 6px;
}
.lp-hero5-card-label {
  font-size: 13px; color: rgba(255,255,255,.6);
}
/* Light */
.lp-hero5[data-theme="light"] { background: #f8fafc; }
.lp-hero5[data-theme="light"] .lp-hero5-bg { display: none; }
.lp-hero5[data-theme="light"] .lp-hero5-badge { border-color: #84cc16; color: #65a30d; }
.lp-hero5[data-theme="light"] h1 { color: #111827; }
.lp-hero5[data-theme="light"] .lp-hero5-sub { color: #6b7280; }
.lp-hero5[data-theme="light"] .lp-hero5-card {
  background: #fff; border-color: #e5e7eb; backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.lp-hero5[data-theme="light"] .lp-hero5-card-num { color: #65a30d; }
.lp-hero5[data-theme="light"] .lp-hero5-card-label { color: #6b7280; }
@media (max-width: 768px) {
  .lp-hero5 h1 { font-size: 28px; }
  .lp-hero5-inner { padding: 40px 20px; }
  .lp-hero5-cards { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Hero 6 — 그래디언트
   배경 이미지 없음, 그래디언트 텍스트 강조, 듀얼 CTA
   ============================================================ */
.lp-hero6 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: #0a0a0a; color: #fff; overflow: hidden;
}
.lp-hero6-inner {
  max-width: 700px; padding: 40px 24px;
}
.lp-hero6-loc {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #a3e635; margin: 0 0 16px;
}
.lp-hero6 h1 {
  font-size: 48px; font-weight: 900; line-height: 1.15; margin: 0 0 16px;
  background: linear-gradient(135deg, #a3e635, #22d3ee);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero6-sub {
  font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 36px;
}
.lp-hero6-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.lp-hero6-btn-primary {
  display: inline-block; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: #a3e635; color: #111; text-decoration: none; transition: transform .2s;
}
.lp-hero6-btn-primary:hover { transform: translateY(-2px); }
/* Light */
.lp-hero6[data-theme="light"] { background: #fafafa; }
.lp-hero6[data-theme="light"] .lp-hero6-loc { color: #65a30d; }
.lp-hero6[data-theme="light"] h1 {
  background: linear-gradient(135deg, #65a30d, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-hero6[data-theme="light"] .lp-hero6-sub { color: #6b7280; }
.lp-hero6[data-theme="light"] .lp-hero6-btn-primary { background: #111827; color: #fff; }
@media (max-width: 768px) {
  .lp-hero6 h1 { font-size: 32px; }
}

/* ============================================================
   Hero 7 — 마스크
   원형 이미지 + 센터 텍스트
   ============================================================ */
.lp-hero7 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: #111827; color: #fff; overflow: hidden;
}
.lp-hero7-inner {
  max-width: 640px; padding: 60px 24px;
}
.lp-hero7-loc {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #a3e635; margin: 0 0 16px;
}
.lp-hero7 h1 {
  font-size: 42px; font-weight: 800; line-height: 1.2; margin: 0 0 32px;
}
.lp-hero7-img {
  width: 260px; height: 260px; margin: 0 auto 32px; border-radius: 50%;
  overflow: hidden; border: 3px solid rgba(132,204,22,.3);
}
.lp-hero7-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-hero7-sub {
  font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0;
}
/* Light */
.lp-hero7[data-theme="light"] { background: #fafafa; }
.lp-hero7[data-theme="light"] .lp-hero7-loc { color: #65a30d; }
.lp-hero7[data-theme="light"] h1 { color: #111827; }
.lp-hero7[data-theme="light"] .lp-hero7-img {
  border-color: #e5e7eb; box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.lp-hero7[data-theme="light"] .lp-hero7-sub { color: #6b7280; }
@media (max-width: 768px) {
  .lp-hero7 h1 { font-size: 28px; }
  .lp-hero7-img { width: 200px; height: 200px; }
}

/* ============================================================
   Hero 8 — 확장마스크
   스크롤 기반 원형 마스크 확장 (600vh)
   ============================================================ */
.lp-hero8 {
  height: 600vh; position: relative; background: #0a0a0a; color: #fff;
}
.lp-hero8-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.lp-hero8-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity .3s;
}
.lp-hero8-mask {
  position: absolute; inset: 0; background: #0a0a0a;
  clip-path: circle(5% at 50% 50%);
  transition: clip-path .1s linear;
}
.lp-hero8-text {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  z-index: 2; transition: opacity .3s;
}
.lp-hero8-text-1 { }
.lp-hero8-text-2 { opacity: 0; pointer-events: none; }
.lp-hero8-loc {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: #a3e635; margin: 0 0 16px;
}
.lp-hero8 h1 {
  font-size: 48px; font-weight: 900; line-height: 1.15; margin: 0;
}
.lp-hero8-scroll-hint {
  margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.lp-hero8-scroll-hint span {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,.4);
}
.lp-hero8-scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px;
  position: relative;
}
.lp-hero8-scroll-wheel {
  width: 4px; height: 8px; background: rgba(255,255,255,.5); border-radius: 2px;
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: hero8-wheel 1.5s ease infinite;
}
@keyframes hero8-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
.lp-hero8-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
  padding: 40px; max-width: 480px; text-align: center;
}
.lp-hero8-badge {
  display: inline-block; padding: 4px 14px; border-radius: 100px; font-size: 12px; font-weight: 700;
  background: rgba(163,230,53,.15); color: #a3e635; margin-bottom: 16px;
}
.lp-hero8-desc {
  font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 12px 0 24px;
}
.lp-hero8-cta {
  display: inline-block; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: #a3e635; color: #111; text-decoration: none;
}
/* Light (minimal) */
.lp-hero8[data-theme="light"] { background: #1a1a2e; }
.lp-hero8[data-theme="light"] .lp-hero8-mask { background: #1a1a2e; }
@media (max-width: 768px) {
  .lp-hero8 h1 { font-size: 28px; }
  .lp-hero8-card { padding: 28px 20px; }
}

/* ============================================================
   Hero 9 — 리빌
   라인별 등장 애니메이션
   ============================================================ */
.lp-hero9 {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: #111827;
}
.lp-hero9-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.lp-hero9-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.65);
}
.lp-hero9-inner {
  position: relative; z-index: 1; max-width: 800px; padding: 80px 48px;
}
.lp-hero9-line {
  overflow: hidden;
}
.lp-hero9-line > * {
  transform: translateY(110%); transition: transform .7s cubic-bezier(.19,1,.22,1);
}
.lp-hero9.lp-hero-active .lp-hero9-line > * {
  transform: translateY(0);
}
.lp-hero9.lp-hero-active .lp-reveal-1 > * { transition-delay: 0s; }
.lp-hero9.lp-hero-active .lp-reveal-2 > * { transition-delay: .12s; }
.lp-hero9.lp-hero-active .lp-reveal-3 > * { transition-delay: .24s; }
.lp-hero9.lp-hero-active .lp-reveal-4 > * { transition-delay: .4s; }
.lp-hero9.lp-hero-active .lp-reveal-5 > * { transition-delay: .55s; }
.lp-hero9.lp-hero-active .lp-reveal-6 > * { transition-delay: .7s; }
.lp-hero9-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #a3e635; margin-bottom: 16px;
}
.lp-hero9 h1 {
  font-size: 52px; font-weight: 900; line-height: 1.1; margin: 0;
}
.lp-hero9-inner p {
  font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 20px 0 0;
}
.lp-hero9-cta {
  display: inline-block; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: #a3e635; color: #111; text-decoration: none; margin-top: 24px;
}
.lp-hero9-bar {
  width: 60px; height: 3px; background: #a3e635; margin-top: 32px;
}
/* Light (minimal) */
.lp-hero9[data-theme="light"] .lp-hero9-overlay { background: rgba(255,255,255,.75); }
.lp-hero9[data-theme="light"] .lp-hero9-eyebrow { color: #65a30d; }
.lp-hero9[data-theme="light"] h1 { color: #111827; }
.lp-hero9[data-theme="light"] .lp-hero9-inner p { color: #6b7280; }
.lp-hero9[data-theme="light"] .lp-hero9-cta { background: #111827; color: #fff; }
.lp-hero9[data-theme="light"] .lp-hero9-bar { background: #65a30d; }
@media (max-width: 768px) {
  .lp-hero9 h1 { font-size: 32px; }
  .lp-hero9-inner { padding: 60px 24px; }
}

/* ============================================================
   Hero 10 — 스트립
   5개 수직 스트립 슬라이드 인 애니메이션
   ============================================================ */
.lp-hero10 {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden; background: #0a0a0a;
}
.lp-hero10-bg {
  position: absolute; inset: 0; display: flex;
}
.lp-hero10-strip {
  flex: 1; background-size: cover; background-position: center;
  transform: translateY(100%); transition: transform .8s cubic-bezier(.19,1,.22,1);
}
.lp-hero10.lp-hero-active .lp-hero10-strip { transform: translateY(0); }
.lp-hero10.lp-hero-active .lp-strip-1 { transition-delay: 0s; }
.lp-hero10.lp-hero-active .lp-strip-2 { transition-delay: .1s; transform: translateY(0); }
.lp-hero10.lp-hero-active .lp-strip-3 { transition-delay: .2s; }
.lp-hero10.lp-hero-active .lp-strip-4 { transition-delay: .3s; }
.lp-hero10.lp-hero-active .lp-strip-5 { transition-delay: .4s; }
/* Alternate strip directions */
.lp-strip-2, .lp-strip-4 { transform: translateY(-100%); }
.lp-hero10-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
}
.lp-hero10-content {
  position: relative; z-index: 1; max-width: 640px; padding: 40px 24px;
}
.lp-hero10-loc {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #a3e635; margin: 0 0 16px;
}
.lp-hero10 h1 {
  font-size: 48px; font-weight: 900; line-height: 1.15; margin: 0 0 16px;
}
.lp-hero10-sub {
  font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 32px;
}
.lp-hero10-cta {
  display: inline-block; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: #a3e635; color: #111; text-decoration: none;
}
/* Light (minimal) */
.lp-hero10[data-theme="light"] { background: #e5e7eb; }
.lp-hero10[data-theme="light"] .lp-hero10-overlay { background: rgba(255,255,255,.6); }
.lp-hero10[data-theme="light"] .lp-hero10-loc { color: #65a30d; }
.lp-hero10[data-theme="light"] h1 { color: #111827; }
.lp-hero10[data-theme="light"] .lp-hero10-sub { color: #4b5563; }
.lp-hero10[data-theme="light"] .lp-hero10-cta { background: #111827; color: #fff; }
@media (max-width: 768px) {
  .lp-hero10 h1 { font-size: 32px; }
}

/* ============================================================
   Hero 11 — 글로우
   오로라 글로우 이펙트 + 통계
   ============================================================ */
.lp-hero11 {
  min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
  text-align: center; background: #050505; color: #fff; overflow: hidden;
}
.lp-hero11-aurora {
  position: absolute; width: 600px; height: 600px; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(163,230,53,.2) 0%, rgba(34,211,238,.1) 40%, transparent 70%);
  filter: blur(80px);
  animation: hero11-drift 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero11-drift {
  0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { transform: translate(-50%, -50%) scale(1.2) rotate(15deg); }
}
.lp-hero11-content {
  position: relative; z-index: 1; max-width: 700px; padding: 40px 24px;
}
.lp-hero11-badge {
  display: inline-block; padding: 6px 16px; border: 1px solid rgba(163,230,53,.4);
  border-radius: 100px; font-size: 13px; color: #a3e635; margin-bottom: 20px;
}
.lp-hero11 h1 {
  font-size: 48px; font-weight: 900; line-height: 1.15; margin: 0 0 16px;
}
.lp-hero11-sub {
  font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0 0 40px;
}
.lp-hero11-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.lp-hero11-stats div {
  display: flex; flex-direction: column; align-items: center;
}
.lp-hero11-stats strong {
  font-size: 32px; font-weight: 900; color: #a3e635;
  text-shadow: 0 0 20px rgba(163,230,53,.4);
}
.lp-hero11-stats span {
  font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px;
}
/* Light */
.lp-hero11[data-theme="light"] { background: #fafafa; }
.lp-hero11[data-theme="light"] .lp-hero11-aurora {
  background: radial-gradient(ellipse at center, rgba(101,163,13,.1) 0%, rgba(5,150,105,.06) 40%, transparent 70%);
}
.lp-hero11[data-theme="light"] .lp-hero11-badge { border-color: #84cc16; color: #65a30d; }
.lp-hero11[data-theme="light"] h1 { color: #111827; }
.lp-hero11[data-theme="light"] .lp-hero11-sub { color: #6b7280; }
.lp-hero11[data-theme="light"] .lp-hero11-stats strong { color: #65a30d; text-shadow: none; }
.lp-hero11[data-theme="light"] .lp-hero11-stats span { color: #6b7280; }
@media (max-width: 768px) {
  .lp-hero11 h1 { font-size: 32px; }
  .lp-hero11-stats { gap: 24px; }
  .lp-hero11-stats strong { font-size: 24px; }
}

/* ───────────────────────── Banner V2 ───────────────────────── */

/* ban1: 포토 오버레이 */
.lp-ban1{position:relative;min-height:320px;background-size:cover;background-position:center;margin:0}
.lp-ban1-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,23,42,.92) 0%,rgba(15,23,42,.75) 100%);display:flex;align-items:center;justify-content:center;padding:48px 24px}
.lp-ban1-inner{max-width:960px;width:100%;display:flex;align-items:center;justify-content:space-between;gap:48px}
.lp-ban1-text h2{font-size:28px;font-weight:900;color:#fff;margin:0 0 8px}
.lp-ban1-text p{font-size:17px;color:#9ca3af;margin:0}
.lp-ban1-stats{display:flex;gap:32px}
.lp-ban1-stat{text-align:center}
.lp-ban1-val{font-size:32px;font-weight:900;color:#a3e635;display:block}
.lp-ban1-label{font-size:22px;color:#9ca3af;margin-top:4px;display:block}
@media(max-width:768px){.lp-ban1-inner{flex-direction:column;text-align:center;gap:32px}.lp-ban1-text h2{font-size:22px}}
.lp-ban1[data-theme="light"] .lp-ban1-text h2{color:#111827}
.lp-ban1[data-theme="light"] .lp-ban1-text p{color:#6b7280}
.lp-ban1[data-theme="light"] .lp-ban1-label{color:#6b7280}

/* ban2: 그라디언트 CTA */
.lp-ban2{margin:0 24px 0;padding:48px;border-radius:24px;background:linear-gradient(135deg,#111827 0%,#1e293b 50%,#111827 100%);position:relative;overflow:hidden}
.lp-ban2::before{content:"";position:absolute;top:-50%;right:-20%;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(163,230,53,.12) 0%,transparent 70%);pointer-events:none}
.lp-ban2-inner{max-width:960px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:40px;position:relative;z-index:1}
.lp-ban2-badge{display:inline-block;background:#a3e635;color:#111827;font-size:17px;font-weight:900;padding:4px 12px;border-radius:6px;margin-bottom:16px;letter-spacing:1px}
.lp-ban2-content h2{font-size:28px;font-weight:900;color:#fff;margin:0 0 12px}
.lp-ban2-content p{font-size:22px;color:#9ca3af;margin:0;line-height:1.6;max-width:480px}
.lp-ban2-phone{text-align:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:24px 32px}
.lp-ban2-phone-label{font-size:22px;color:#9ca3af;display:block;margin-bottom:4px}
.lp-ban2-phone-num{font-size:28px;font-weight:900;color:#a3e635;letter-spacing:1px}
@media(max-width:768px){.lp-ban2{margin:0 16px;padding:32px 24px}.lp-ban2-inner{flex-direction:column;text-align:center}.lp-ban2-content h2{font-size:22px}.lp-ban2-content p{max-width:100%}}
.lp-ban2[data-theme="light"]{background:linear-gradient(135deg,#fafafa 0%,#fff 50%,#fafafa 100%)}
.lp-ban2[data-theme="light"] .lp-ban2-badge{color:#fafafa}
.lp-ban2[data-theme="light"] .lp-ban2-content h2{color:#111827}
.lp-ban2[data-theme="light"] .lp-ban2-content p{color:#6b7280}
.lp-ban2[data-theme="light"] .lp-ban2-phone-label{color:#6b7280}

/* ban3: 미니멀 스플릿 */
.lp-ban3{padding:80px 24px;background:#0f172a}
.lp-ban3-inner{max-width:1060px;margin:0 auto;display:flex;align-items:center;gap:64px}
.lp-ban3-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0;line-height:1.3}
.lp-ban3-sub{font-size:22px;color:#9ca3af;margin-top:16px}
.lp-ban3-left{flex:1}
.lp-ban3-right{flex:0 0 auto}
.lp-ban3-card{background:#1e293b;border-radius:20px;overflow:hidden;width:280px;transition:transform .3s}
.lp-ban3-card:hover{transform:translateY(-4px)}
.lp-ban3-card-img{height:140px;background-size:cover;background-position:center}
.lp-ban3-card-body{padding:20px;text-align:center}
.lp-ban3-card-label{font-size:22px;color:#9ca3af;margin:0 0 4px}
.lp-ban3-card-phone{font-size:24px;font-weight:900;color:#a3e635;margin:0 0 4px}
.lp-ban3-card-sub{font-size:22px;color:#6b7280;margin:0}
@media(max-width:768px){.lp-ban3-inner{flex-direction:column;text-align:center;gap:32px}.lp-ban3-title{font-size:24px}.lp-ban3-card{width:100%}.lp-ban3{padding:56px 16px}}
.lp-ban3[data-theme="light"]{background:#fafafa}
.lp-ban3[data-theme="light"] .lp-ban3-title{color:#111827}
.lp-ban3[data-theme="light"] .lp-ban3-sub{color:#6b7280}
.lp-ban3[data-theme="light"] .lp-ban3-card{background:#fff}
.lp-ban3[data-theme="light"] .lp-ban3-card-label{color:#6b7280}

/* ───────────────────────── Painpoint V2 ───────────────────────── */

/* pain1: Q&A 페인포인트 */
.lp-pain{padding:80px 24px;background:#111827}
.lp-pain-inner{max-width:1060px;margin:0 auto}
.lp-pain-header{text-align:center;margin-bottom:48px}
.lp-pain-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0;line-height:1.3}
.lp-pain-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.lp-pain-card{background:#1e293b;border-radius:20px;overflow:hidden;transition:transform .3s}
.lp-pain-card:hover{transform:translateY(-4px)}
.lp-pain-card-img{height:160px;background-size:cover;background-position:center}
.lp-pain-card-body{padding:24px}
.lp-pain-q{display:inline-block;width:28px;height:28px;line-height:28px;text-align:center;background:rgba(255,255,255,.1);border-radius:8px;font-weight:900;font-size:14px;color:#a3e635;margin-bottom:12px}
.lp-pain-card-body h4{font-size:17px;font-weight:700;color:#fff;margin:0 0 16px;line-height:1.4}
.lp-pain-ans{border-top:1px solid rgba(255,255,255,.08);padding-top:12px}
.lp-pain-a{display:inline-block;width:28px;height:28px;line-height:28px;text-align:center;background:#a3e635;border-radius:8px;font-weight:900;font-size:14px;color:#111827;margin-bottom:8px}
.lp-pain-ans p{font-size:15px;color:#9ca3af;margin:0;line-height:1.5}
@media(max-width:768px){.lp-pain-cards{grid-template-columns:1fr}.lp-pain-title{font-size:24px}.lp-pain{padding:56px 16px}}
.lp-pain[data-theme="light"]{background:#fafafa}
.lp-pain[data-theme="light"] .lp-pain-title{color:#111827}
.lp-pain[data-theme="light"] .lp-pain-card{background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.08)}
.lp-pain[data-theme="light"] .lp-pain-card-body h4{color:#111827}
.lp-pain[data-theme="light"] .lp-pain-ans{border-top-color:rgba(0,0,0,.06)}
.lp-pain[data-theme="light"] .lp-pain-ans p{color:#6b7280}

/* pain2: 비포&애프터 */
.lp-painba{padding:80px 24px;background:#111827}
.lp-painba-inner{max-width:800px;margin:0 auto}
.lp-painba-header{text-align:center;margin-bottom:48px}
.lp-painba-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0}
.lp-painba-items{display:flex;flex-direction:column;gap:20px}
.lp-painba-row{display:flex;align-items:center;gap:16px;background:#1e293b;border-radius:16px;padding:20px 24px}
.lp-painba-before,.lp-painba-after{flex:1;display:flex;align-items:center;gap:12px}
.lp-painba-icon{width:32px;height:32px;line-height:32px;text-align:center;border-radius:50%;font-weight:900;font-size:16px;flex-shrink:0}
.lp-painba-before .lp-painba-icon{background:rgba(239,68,68,.15);color:#ef4444}
.lp-painba-after .lp-painba-icon{background:rgba(163,230,53,.15);color:#a3e635}
.lp-painba-before p,.lp-painba-after p{margin:0;font-size:16px;color:#e5e7eb;font-weight:600}
.lp-painba-arrow{color:#6b7280;font-size:20px;flex-shrink:0}
@media(max-width:768px){.lp-painba-row{flex-direction:column;gap:8px;text-align:center}.lp-painba-arrow{transform:rotate(90deg)}.lp-painba-before,.lp-painba-after{justify-content:center}.lp-painba-title{font-size:24px}.lp-painba{padding:56px 16px}}
.lp-painba[data-theme="light"]{background:#fafafa}
.lp-painba[data-theme="light"] .lp-painba-title{color:#111827}
.lp-painba[data-theme="light"] .lp-painba-row{background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.08)}
.lp-painba[data-theme="light"] .lp-painba-before p,.lp-painba[data-theme="light"] .lp-painba-after p{color:#111827}

/* pain3: 스토리 */
.lp-pains{padding:80px 24px;background:#111827}
.lp-pains-inner{max-width:1060px;margin:0 auto}
.lp-pains-header{text-align:center;margin-bottom:48px}
.lp-pains-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0}
.lp-pains-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.lp-pains-card{position:relative;border-radius:20px;overflow:hidden;min-height:320px;background-size:cover;background-position:center;transition:transform .3s}
.lp-pains-card:hover{transform:translateY(-4px)}
.lp-pains-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.2) 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px}
.lp-pains-ov blockquote{font-size:17px;font-weight:700;color:#fff;margin:0 0 16px;line-height:1.5;font-style:italic}
.lp-pains-solve{font-size:15px;color:#a3e635;font-weight:600;line-height:1.4}
.lp-pains-solve span{margin-right:4px}
@media(max-width:768px){.lp-pains-cards{grid-template-columns:1fr}.lp-pains-title{font-size:24px}.lp-pains{padding:56px 16px}}
.lp-pains[data-theme="light"]{background:#fafafa}
.lp-pains[data-theme="light"] .lp-pains-title{color:#111827}

/* ───────────────────────── Image V2 ───────────────────────── */

/* img1: 풀블리드갤러리 */
.lp-img1{background:#111827;padding:0}
.lp-img1-inner{display:flex;flex-direction:column}
.lp-img1-slide{position:relative;min-height:400px;overflow:hidden}
.lp-img1-slide img{width:100%;height:400px;object-fit:cover;display:block}
.lp-img1-caption{position:absolute;bottom:0;left:0;right:0;padding:32px;background:linear-gradient(to top,rgba(0,0,0,.7),transparent)}
.lp-img1-caption h3{font-size:20px;font-weight:800;color:#fff;margin:0 0 4px}
.lp-img1-caption p{font-size:15px;color:#d1d5db;margin:0}
.lp-img1[data-theme="light"]{background:#fafafa}

/* img2: 매거진레이아웃 */
.lp-img2{padding:80px 24px;background:#111827}
.lp-img2-inner{max-width:1060px;margin:0 auto}
.lp-img2-header{margin-bottom:40px}
.lp-img2-title{font-size:32px;font-weight:900;color:#fff;margin:0}
.lp-img2-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.lp-img2-item{border-radius:16px;overflow:hidden}
.lp-img2-item.is-large{grid-column:span 2;grid-row:span 2}
.lp-img2-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.lp-img2-item:hover img{transform:scale(1.05)}
@media(max-width:768px){.lp-img2-grid{grid-template-columns:1fr}.lp-img2-item.is-large{grid-column:span 1;grid-row:span 1}.lp-img2-title{font-size:24px}.lp-img2{padding:56px 16px}}
.lp-img2[data-theme="light"]{background:#fafafa}
.lp-img2[data-theme="light"] .lp-img2-title{color:#111827}

/* img3: 어메니티카드 */
.lp-img3{padding:80px 24px;background:#111827}
.lp-img3-inner{max-width:1060px;margin:0 auto}
.lp-img3-header{text-align:center;margin-bottom:48px}
.lp-img3-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0}
.lp-img3-sub{font-size:17px;color:#9ca3af;margin-top:12px}
.lp-img3-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.lp-img3-card{background:#1e293b;border-radius:20px;overflow:hidden;transition:transform .3s}
.lp-img3-card:hover{transform:translateY(-4px)}
.lp-img3-card img{width:100%;height:200px;object-fit:cover;display:block}
.lp-img3-card-body{padding:20px}
.lp-img3-card-body h3{font-size:18px;font-weight:800;color:#fff;margin:0 0 8px}
.lp-img3-card-body p{font-size:15px;color:#9ca3af;margin:0}
@media(max-width:768px){.lp-img3-grid{grid-template-columns:1fr}.lp-img3-title{font-size:24px}.lp-img3{padding:56px 16px}}
.lp-img3[data-theme="light"]{background:#fafafa}
.lp-img3[data-theme="light"] .lp-img3-title{color:#111827}
.lp-img3[data-theme="light"] .lp-img3-sub{color:#6b7280}
.lp-img3[data-theme="light"] .lp-img3-card{background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.08)}
.lp-img3[data-theme="light"] .lp-img3-card-body h3{color:#111827}
.lp-img3[data-theme="light"] .lp-img3-card-body p{color:#6b7280}

/* img4: 매거진오버레이 */
.lp-img4{padding:80px 24px;background:#111827}
.lp-img4-inner{max-width:1060px;margin:0 auto}
.lp-img4-header{margin-bottom:40px}
.lp-img4-title{font-size:32px;font-weight:900;color:#fff;margin:0}
.lp-img4-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.lp-img4-item{position:relative;border-radius:16px;overflow:hidden;min-height:280px}
.lp-img4-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.lp-img4-item:hover img{transform:scale(1.05)}
.lp-img4-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7),transparent);display:flex;flex-direction:column;justify-content:flex-end;padding:20px;opacity:0;transition:opacity .3s}
.lp-img4-item:hover .lp-img4-overlay{opacity:1}
.lp-img4-overlay h3{font-size:18px;font-weight:800;color:#fff;margin:0 0 4px}
.lp-img4-overlay p{font-size:14px;color:#d1d5db;margin:0}
@media(max-width:768px){.lp-img4-grid{grid-template-columns:1fr}.lp-img4-title{font-size:24px}.lp-img4{padding:56px 16px}}
.lp-img4[data-theme="light"]{background:#fafafa}
.lp-img4[data-theme="light"] .lp-img4-title{color:#111827}

/* ───────────────────────── Traffic V2 ───────────────────────── */

.lp-tran1{padding:80px 24px;background:#111827}
.lp-tran1-inner{max-width:800px;margin:0 auto}
.lp-tran1-header{text-align:center;margin-bottom:48px}
.lp-tran1-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0}
.lp-tran1-sub{font-size:17px;color:#9ca3af;margin-top:12px}
.lp-tran1-list{display:flex;flex-direction:column;gap:16px}
.lp-tran1-row{display:flex;align-items:center;gap:20px;background:#1e293b;border-radius:16px;padding:20px 24px;transition:transform .3s}
.lp-tran1-row:hover{transform:translateX(4px)}
.lp-tran1-time{font-size:36px;font-weight:900;color:#a3e635;min-width:80px;text-align:center;line-height:1}
.lp-tran1-time small{font-size:16px;font-weight:700;color:#9ca3af;margin-left:2px}
.lp-tran1-info h4{font-size:17px;font-weight:700;color:#fff;margin:0 0 4px}
.lp-tran1-method{font-size:14px;color:#9ca3af}
@media(max-width:768px){.lp-tran1-title{font-size:24px}.lp-tran1{padding:56px 16px}}
.lp-tran1[data-theme="light"]{background:#fafafa}
.lp-tran1[data-theme="light"] .lp-tran1-title{color:#111827}
.lp-tran1[data-theme="light"] .lp-tran1-sub{color:#6b7280}
.lp-tran1[data-theme="light"] .lp-tran1-row{background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.08)}
.lp-tran1[data-theme="light"] .lp-tran1-info h4{color:#111827}
.lp-tran1[data-theme="light"] .lp-tran1-method{color:#6b7280}

/* ───────────────────────── Auto Location V2 ───────────────────────── */

.lp-loc1{padding:80px 24px;background:#111827}
.lp-loc1-inner{max-width:1060px;margin:0 auto}
.lp-loc1-header{text-align:center;margin-bottom:48px}
.lp-loc1-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0}
.lp-loc1-sub{font-size:17px;color:#9ca3af;margin-top:12px}
@media(max-width:768px){.lp-loc1-title{font-size:24px}.lp-loc1{padding:56px 16px}}
.lp-loc1[data-theme="light"]{background:#fafafa}
.lp-loc1[data-theme="light"] .lp-loc1-title{color:#111827}
.lp-loc1[data-theme="light"] .lp-loc1-sub{color:#6b7280}

.lp-loc2{padding:80px 24px;background:#111827}
.lp-loc2-inner{max-width:1060px;margin:0 auto}
.lp-loc2-header{text-align:center;margin-bottom:48px}
.lp-loc2-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0}
@media(max-width:768px){.lp-loc2-title{font-size:24px}.lp-loc2{padding:56px 16px}}
.lp-loc2[data-theme="light"]{background:#fafafa}
.lp-loc2[data-theme="light"] .lp-loc2-title{color:#111827}

/* ── loc1: 포토 카드 그리드 ── */
.loc-cards-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
@media(max-width:768px){.loc-cards-grid{grid-template-columns:1fr;gap:16px}}
.loc-card{position:relative;border-radius:16px;overflow:hidden;transition:transform .3s,box-shadow .3s}
.loc-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.35)}
.loc-card-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .4s}
.loc-card:hover .loc-card-bg{transform:scale(1.05)}
.loc-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.2) 100%)}
.loc-card-body{position:relative;padding:28px 24px;display:flex;flex-direction:column;min-height:220px;justify-content:flex-end}
.loc-card-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.loc-card-icon{font-size:24px;width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:rgba(163,230,53,.2);backdrop-filter:blur(8px);border-radius:12px;flex-shrink:0}
.loc-card-title{font-size:18px;font-weight:800;color:#fff;margin:0;line-height:1.3}
.loc-card-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px}
.loc-item{display:flex;align-items:center;padding:0}
.loc-item-name{font-size:14px;color:rgba(255,255,255,.85);line-height:1.7}
.loc-item-name::before{content:"";display:inline-block;width:4px;height:4px;border-radius:50%;background:#a3e635;margin-right:10px;flex-shrink:0;vertical-align:middle}

/* loc1 light */
.lp-loc1[data-theme="light"] .loc-card-overlay{background:linear-gradient(to top,rgba(0,0,0,.8) 0%,rgba(0,0,0,.35) 50%,rgba(0,0,0,.15) 100%)}

/* ── loc2: 시네마틱 이미지 카드 ── */
.lp-cinema-card{display:flex;align-items:stretch;border-radius:20px;overflow:hidden;margin-bottom:28px;min-height:320px;background:#1a1a2e;transition:transform .3s,box-shadow .3s}
.lp-cinema-card:hover{transform:translateY(-3px);box-shadow:0 20px 50px rgba(0,0,0,.4)}
.lp-cinema-card--reverse{flex-direction:row-reverse}
.lp-cinema-img{flex:0 0 45%;background-size:cover;background-position:center;position:relative}
.lp-cinema-img::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 60%,#1a1a2e 100%)}
.lp-cinema-card--reverse .lp-cinema-img::after{background:linear-gradient(-90deg,transparent 60%,#1a1a2e 100%)}
.lp-cinema-body{flex:1;padding:40px 36px;display:flex;flex-direction:column;justify-content:center}
.lp-cinema-num{font-size:48px;font-weight:900;color:rgba(163,230,53,.15);letter-spacing:-2px;line-height:1;margin-bottom:4px;display:block}
.lp-cinema-card h3{font-size:22px;font-weight:800;color:#fff;margin:0 0 20px;line-height:1.3}
.lp-cinema-card h3 .lp-cinema-emoji{margin-right:8px}
.lp-cinema-loc-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.lp-cinema-loc-item{padding:6px 0;border-bottom:1px solid rgba(255,255,255,.06)}
.lp-cinema-loc-item:last-child{border-bottom:none}
.lp-cinema-loc-name{font-size:15px;color:#d1d5db;line-height:1.5}
@media(max-width:768px){
  .lp-cinema-card,.lp-cinema-card--reverse{flex-direction:column;min-height:auto}
  .lp-cinema-img{flex:none;height:200px}
  .lp-cinema-img::after{background:linear-gradient(180deg,transparent 50%,#1a1a2e 100%)!important}
  .lp-cinema-body{padding:24px 20px}
  .lp-cinema-num{font-size:36px}
}

/* loc2 light */
.lp-loc2[data-theme="light"] .lp-cinema-card{background:#f8fafc}
.lp-loc2[data-theme="light"] .lp-cinema-img::after{background:linear-gradient(90deg,transparent 60%,#f8fafc 100%)}
.lp-loc2[data-theme="light"] .lp-cinema-card--reverse .lp-cinema-img::after{background:linear-gradient(-90deg,transparent 60%,#f8fafc 100%)}
.lp-loc2[data-theme="light"] .lp-cinema-card h3{color:#111827}
.lp-loc2[data-theme="light"] .lp-cinema-num{color:rgba(163,230,53,.2)}
.lp-loc2[data-theme="light"] .lp-cinema-loc-name{color:#4b5563}
.lp-loc2[data-theme="light"] .lp-cinema-loc-item{border-bottom-color:rgba(0,0,0,.06)}

/* ───────────────────────── Auto Floorplan V2 ───────────────────────── */

.lp-floor1{padding:80px 24px;background:#111827}
.lp-floor1-inner{max-width:1060px;margin:0 auto}
.lp-floor1-header{text-align:center;margin-bottom:48px}
.lp-floor1-title{font-size:32px;font-weight:900;color:#fff;margin:12px 0 0}
.lp-floor1-sub{font-size:17px;color:#9ca3af;margin-top:12px}
@media(max-width:768px){.lp-floor1-title{font-size:24px}.lp-floor1{padding:56px 16px}}
.lp-floor1[data-theme="light"]{background:#fafafa}
.lp-floor1[data-theme="light"] .lp-floor1-title{color:#111827}
.lp-floor1[data-theme="light"] .lp-floor1-sub{color:#6b7280}
