/* =====================================================================
   밥이요 - 키워드 랜딩 페이지 전용 CSS
   - 페이지마다 --lp-accent 변수로 색상 변경
   - 모든 섹션 반응형 / 모션 포함
===================================================================== */

.lp-body {
    background: #fff;
    color: #0f172a;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

.lp-body img { max-width: 100%; height: auto; display: block; }

/* ============ 글로벌 변수 ============ */
:root {
    --lp-text: #0f172a;
    --lp-text-light: #475569;
    --lp-text-muted: #94a3b8;
    --lp-border: #e2e8f0;
    --lp-bg-tint: #f8fafc;
    --lp-radius: 16px;
    --lp-radius-lg: 24px;
    --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ 공통 키프레임 ============ */
@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes lpFloatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -16px); }
}
@keyframes lpPulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0; }
}
@keyframes lpShine {
    0% { background-position: -150% 0; }
    100% { background-position: 250% 0; }
}
@keyframes lpDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(30px, -20px) scale(1.05); }
    66%  { transform: translate(-20px, 25px) scale(0.96); }
}
@keyframes lpDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-40px, 30px) scale(1.08); }
}
@keyframes lpGradMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============ 헤더 보정 (사이트 헤더와 함께 사용) ============ */
.lp-body { padding-top: 0; }
.lp-body .header { background: rgba(255, 255, 255, 0.92); }

/* ============ HERO ============ */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--lp-tint) 0%, #ffffff 60%);
}
.lp-hero-bg {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
}
.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}
.lp-orb-1 {
    width: 480px; height: 480px;
    top: -120px; right: -120px;
    background: radial-gradient(circle, var(--lp-accent) 0%, transparent 70%);
    animation: lpDrift1 18s ease-in-out infinite;
}
.lp-orb-2 {
    width: 360px; height: 360px;
    bottom: -100px; left: -80px;
    background: radial-gradient(circle, var(--lp-accent2) 0%, transparent 70%);
    animation: lpDrift2 22s ease-in-out infinite;
}
.lp-orb-3 {
    width: 240px; height: 240px;
    top: 40%; left: 45%;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    opacity: 0.4;
    animation: lpDrift1 26s ease-in-out infinite reverse;
}
.lp-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

.lp-hero .container { position: relative; z-index: 1; }

.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--lp-text-light);
    margin-bottom: 32px;
}
.lp-breadcrumb a {
    color: var(--lp-text-light);
    text-decoration: none;
    transition: color 0.2s;
}
.lp-breadcrumb a:hover { color: var(--lp-accent); }
.lp-breadcrumb span:last-child { color: var(--lp-text); font-weight: 600; }

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.lp-hero-text { max-width: 600px; }

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    color: var(--lp-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.lp-eyebrow svg { width: 14px; height: 14px; }

.lp-h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-text);
    margin-bottom: 24px;
}
.lp-h1-em {
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lpGradMove 8s ease-in-out infinite;
    display: inline-block;
}

.lp-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
    color: var(--lp-text-light);
    margin-bottom: 28px;
    font-weight: 400;
}

.lp-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}
.lp-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--lp-text);
}
.lp-hero-bullets li svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--lp-accent);
    background: var(--lp-tint);
    border-radius: 50%;
    padding: 2px;
    box-sizing: content-box;
}

.lp-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease), background 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-family: inherit;
}
.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    color: #fff;
    box-shadow: 0 8px 24px -8px var(--lp-accent);
}
.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px var(--lp-accent);
}
.lp-btn-ghost {
    background: #fff;
    color: var(--lp-text);
    border: 1.5px solid var(--lp-border);
    box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
}
.lp-btn-ghost:hover {
    border-color: var(--lp-accent);
    color: var(--lp-accent);
    transform: translateY(-2px);
}
.lp-btn-white {
    background: #fff;
    color: var(--lp-accent);
    box-shadow: 0 8px 24px -6px rgba(0,0,0,0.25);
}
.lp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(0,0,0,0.3); }
.lp-btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
}
.lp-btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* ===== Hero Visual ===== */
.lp-hero-visual {
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}
.lp-hero-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 5 / 6;
    background: linear-gradient(160deg, #fff 0%, var(--lp-tint) 100%);
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    padding: 44px 36px;
    box-shadow:
        0 30px 60px -20px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255,255,255,0.5) inset;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--lp-ease);
    transform-style: preserve-3d;
    overflow: hidden;
}
.lp-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg,
            transparent 0%,
            rgba(255,255,255,0.55) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: lpShine 6s ease-in-out infinite;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.lp-hero-card-glow {
    position: absolute;
    top: -20%; right: -20%;
    width: 70%; height: 70%;
    background: radial-gradient(circle, var(--lp-accent) 0%, transparent 70%);
    opacity: 0.35;
    filter: blur(30px);
    pointer-events: none;
}
.lp-hero-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px dashed var(--lp-border);
    position: relative;
    z-index: 1;
}
.lp-hero-card-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--lp-ease);
}
.lp-hero-card:hover .lp-hero-card-logo {
    transform: scale(1.04);
}
.lp-hero-card-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: auto;
    box-shadow: 0 12px 28px -8px var(--lp-accent);
    position: relative;
    z-index: 1;
}
.lp-hero-card-icon svg { width: 36px; height: 36px; }
.lp-hero-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.02em;
    margin-top: 32px;
}
.lp-hero-card-sub {
    font-size: 0.86rem;
    color: var(--lp-text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 4px;
}
.lp-hero-card-stats {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    border-top: 1px solid var(--lp-border);
    padding-top: 24px;
}
.lp-hero-card-stats li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lp-hero-card-stats strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--lp-accent);
    letter-spacing: -0.02em;
}
.lp-hero-card-stats span {
    font-size: 0.74rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}

.lp-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--lp-text);
    box-shadow: 0 14px 30px -8px rgba(15, 23, 42, 0.18);
    border: 1px solid var(--lp-border);
    animation: lpFloat 4s ease-in-out infinite;
    white-space: nowrap;
}
.lp-float-1 { top: 16%; left: -16px; animation-delay: 0.2s; }
.lp-float-2 { bottom: 14%; right: -10px; animation-delay: 1.3s; }
.lp-float-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lp-accent);
    position: relative;
}
.lp-float-dot::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--lp-accent);
    animation: lpPulseDot 1.8s ease-out infinite;
}
.lp-float-dot-success { background: #10b981; }
.lp-float-dot-success::after { background: #10b981; }

.lp-hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
    z-index: 1;
}
.lp-hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============ 공통 섹션 ============ */
.lp-section {
    padding: 100px 0;
    position: relative;
}
.lp-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.lp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--lp-tint);
    color: var(--lp-accent);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.lp-section-badge-light {
    background: rgba(255,255,255,0.14);
    color: #fff;
}
.lp-section-badge-dark {
    background: rgba(15, 23, 42, 0.08);
    color: var(--lp-text);
}
.lp-section-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.025em;
    color: var(--lp-text);
    margin-bottom: 16px;
}
.lp-section-header p {
    font-size: 1.05rem;
    color: var(--lp-text-light);
    line-height: 1.75;
}
.lp-section-header-light h2,
.lp-section-header-light p {
    color: #fff;
}
.lp-section-header-light p { color: rgba(255,255,255,0.78); }

.lp-text-gradient {
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-text-gradient-light {
    background: linear-gradient(135deg, #fff 0%, var(--lp-tint) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ INTRO ============ */
.lp-intro { background: #fff; }
.lp-lead {
    font-size: 1.18rem !important;
    font-weight: 600 !important;
    color: var(--lp-text) !important;
}
.lp-intro-body {
    max-width: 820px;
    margin: 0 auto;
    color: var(--lp-text-light);
    font-size: 1.02rem;
    line-height: 1.95;
}
.lp-intro-body p {
    margin-bottom: 22px;
}
.lp-intro-body p:last-child { margin-bottom: 0; }
.lp-intro-body p::first-letter {
    font-weight: 700;
    color: var(--lp-text);
}

/* ============ BENEFITS / FOR BUSINESS — 카드 그리드 ============ */
.lp-benefits { background: var(--lp-bg-tint); }
.lp-business { background: #fff; }

.lp-card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
.lp-card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.lp-card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.lp-card-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.lp-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    transition: transform 0.35s var(--lp-ease), box-shadow 0.35s var(--lp-ease), border-color 0.25s;
    position: relative;
    overflow: hidden;
}
.lp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--lp-ease);
}
.lp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.16);
    border-color: transparent;
}
.lp-card:hover::before { transform: scaleX(1); }
.lp-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--lp-tint);
    color: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s var(--lp-ease), background 0.3s;
}
.lp-card-icon svg { width: 26px; height: 26px; }
.lp-card:hover .lp-card-icon {
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    color: #fff;
    transform: scale(1.08);
}
.lp-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lp-text);
    margin-bottom: 10px;
}
.lp-card p {
    color: var(--lp-text-light);
    font-size: 0.94rem;
    line-height: 1.7;
}

/* Dark variant — for business 섹션 */
.lp-card-dark {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    border-color: #1e293b;
    color: #e2e8f0;
}
.lp-card-dark h3 { color: #fff; }
.lp-card-dark p { color: rgba(255,255,255,0.7); }
.lp-card-icon-dark {
    background: rgba(255,255,255,0.08);
    color: var(--lp-accent2);
}
.lp-card-dark:hover .lp-card-icon-dark {
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    color: #fff;
}

/* ============ HOW IT WORKS ============ */
.lp-how {
    background:
        radial-gradient(ellipse at top left, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    color: #e2e8f0;
}
.lp-how-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.lp-how .container { position: relative; z-index: 1; }

.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
}
.lp-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--lp-radius);
    padding: 32px 26px;
    transition: transform 0.35s var(--lp-ease), background 0.3s, border-color 0.3s;
    position: relative;
}
.lp-step::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--lp-accent) 0%, transparent 50%, var(--lp-accent2) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}
.lp-step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}
.lp-step-num {
    display: inline-block;
    font-family: 'Noto Sans KR', monospace;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--lp-accent2);
    margin-bottom: 16px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
}
.lp-step h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.lp-step p {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============ APP SCREENS ============ */
.lp-screens { background: #fff; }
.lp-screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-screen {
    position: relative;
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: var(--lp-tint);
    border: 1px solid var(--lp-border);
    transition: transform 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease);
    aspect-ratio: 3 / 4;
}
.lp-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--lp-ease);
}
.lp-screen:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px -16px rgba(15, 23, 42, 0.2);
}
.lp-screen:hover img { transform: scale(1.04); }
.lp-screen-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
    color: #fff;
}
.lp-screen-label span {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp-accent2);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.lp-screen-label strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}

/* ============ DUAL CTA — 이용자 / 입점업체 분리 ============ */
.lp-dual { background: #fff; padding: 100px 0; }

.lp-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.lp-dual-card {
    position: relative;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    padding: 48px 36px 44px;
    transition: transform 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease);
}
.lp-dual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.2);
}
.lp-dual-bg { position: absolute; inset: 0; pointer-events: none; }
.lp-orb-d1 {
    width: 320px; height: 320px;
    top: -120px; right: -80px;
    background: radial-gradient(circle, var(--lp-accent) 0%, transparent 70%);
    opacity: 0.35;
    animation: lpDrift1 22s ease-in-out infinite;
}
.lp-orb-d2 {
    width: 320px; height: 320px;
    bottom: -120px; left: -60px;
    background: radial-gradient(circle, var(--lp-accent2) 0%, transparent 70%);
    opacity: 0.5;
    animation: lpDrift2 24s ease-in-out infinite;
}
.lp-dual-card-inner { position: relative; z-index: 1; }

/* ----- 이용자 카드 (밝은 톤) ----- */
.lp-dual-card-user {
    background:
        linear-gradient(155deg, #ffffff 0%, var(--lp-tint) 100%);
    border: 1.5px solid var(--lp-border);
    color: var(--lp-text);
}
.lp-dual-card-user::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    z-index: 2;
}

/* ----- 입점업체 카드 (다크 톤) ----- */
.lp-dual-card-partner {
    background:
        radial-gradient(ellipse at top right, rgba(255,255,255,0.06) 0%, transparent 50%),
        linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    background-size: 100% 100%, 200% 200%;
    animation: lpGradMove 16s ease-in-out infinite;
    color: #e2e8f0;
    border: 1.5px solid #1e293b;
}
.lp-dual-card-partner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-accent2) 0%, var(--lp-accent) 100%);
    z-index: 2;
}

/* ----- 헤드 ----- */
.lp-dual-card-head { margin-bottom: 32px; }
.lp-dual-card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--lp-tint);
    color: var(--lp-accent);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.lp-dual-card-badge-partner {
    background: rgba(255, 255, 255, 0.08);
    color: var(--lp-accent2);
}
.lp-dual-card h3 {
    font-size: clamp(1.45rem, 2.2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    margin-bottom: 10px;
}
.lp-dual-card-user h3 { color: var(--lp-text); }
.lp-dual-card-partner h3 { color: #fff; }
.lp-dual-card-head p {
    font-size: 0.98rem;
    line-height: 1.6;
}
.lp-dual-card-user .lp-dual-card-head p { color: var(--lp-text-light); }
.lp-dual-card-partner .lp-dual-card-head p { color: rgba(255,255,255,0.74); }

/* ----- 이용자 — 스토어 버튼 ----- */
.lp-dual-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.lp-dual-stores .lp-store { flex: 1; min-width: 130px; transition: transform 0.3s var(--lp-ease); }
.lp-dual-stores .lp-store img {
    height: 52px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}
.lp-dual-stores .lp-store:hover { transform: translateY(-3px); }

/* lp-store 기본 (다른 곳에서 사용될 수 있음 대비) */
.lp-store { display: block; transition: transform 0.3s var(--lp-ease); }
.lp-store img { height: 52px; width: auto; }

/* ----- 입점업체 — 연락 카드 ----- */
.lp-dual-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.lp-dual-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--lp-ease);
}
.lp-dual-contact:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--lp-accent2);
    transform: translateX(4px);
}
.lp-dual-contact svg {
    flex-shrink: 0;
    color: var(--lp-accent2);
}
.lp-dual-contact span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lp-dual-contact strong {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.lp-dual-contact em {
    font-style: normal;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
}
.lp-dual-contact-kakao {
    background: rgba(254, 229, 0, 0.12);
    border-color: rgba(254, 229, 0, 0.3);
}
.lp-dual-contact-kakao svg { color: #fee500; }
.lp-dual-contact-kakao:hover {
    background: rgba(254, 229, 0, 0.18);
    border-color: rgba(254, 229, 0, 0.5);
}

/* ----- 불릿 ----- */
.lp-dual-bullets {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    border-top: 1px dashed var(--lp-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-dual-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--lp-text);
    font-weight: 500;
}
.lp-dual-bullets li svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--lp-accent);
}
.lp-dual-bullets-light {
    border-top-color: rgba(255, 255, 255, 0.12);
}
.lp-dual-bullets-light li { color: rgba(255, 255, 255, 0.86); }
.lp-dual-bullets-light li svg { color: var(--lp-accent2); }

/* ============ STATS ============ */
.lp-stats {
    background: var(--lp-bg-tint);
    padding: 80px 0;
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}
.lp-stat {
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    transition: transform 0.3s var(--lp-ease), box-shadow 0.3s;
}
.lp-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -12px rgba(15, 23, 42, 0.12);
}
.lp-stat strong {
    display: block;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--lp-accent);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 6px;
}
.lp-stat strong sup {
    font-size: 0.45em;
    font-weight: 700;
    margin-left: 2px;
    color: var(--lp-accent2);
    vertical-align: super;
}
.lp-stat span {
    font-size: 0.92rem;
    color: var(--lp-text-light);
    font-weight: 500;
}

/* ============ FAQ ============ */
.lp-faq { background: #fff; }
.lp-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lp-faq-item {
    background: var(--lp-bg-tint);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
}
.lp-faq-item[open] {
    border-color: var(--lp-accent);
    box-shadow: 0 10px 24px -10px rgba(15, 23, 42, 0.1);
    background: #fff;
}
.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: background 0.2s;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-q {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    font-family: 'Noto Sans KR', monospace;
}
.lp-faq-question {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text);
    letter-spacing: -0.01em;
    line-height: 1.5;
}
.lp-faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    position: relative;
    transition: transform 0.3s var(--lp-ease);
}
.lp-faq-icon::before,
.lp-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--lp-text-light);
    border-radius: 2px;
}
.lp-faq-icon::before {
    top: 11px; left: 4px;
    width: 16px; height: 2px;
}
.lp-faq-icon::after {
    top: 4px; left: 11px;
    width: 2px; height: 16px;
    transition: transform 0.3s var(--lp-ease);
}
.lp-faq-item[open] .lp-faq-icon::after {
    transform: scaleY(0);
}
.lp-faq-item[open] .lp-faq-icon::before {
    background: var(--lp-accent);
}
.lp-faq-answer {
    padding: 0 24px 24px 72px;
    color: var(--lp-text-light);
    font-size: 0.96rem;
    line-height: 1.85;
}

/* ============ BOTTOM CTA ============ */
.lp-cta {
    position: relative;
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent2) 100%);
    background-size: 200% 200%;
    animation: lpGradMove 16s ease-in-out infinite;
    color: #fff;
    overflow: hidden;
}
.lp-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.lp-orb-c1 {
    width: 420px; height: 420px;
    top: -120px; left: 20%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: lpDrift1 22s ease-in-out infinite;
}
.lp-orb-c2 {
    width: 360px; height: 360px;
    bottom: -120px; right: 15%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: lpDrift2 28s ease-in-out infinite;
}
.lp-cta .container { position: relative; z-index: 1; }
.lp-cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.lp-cta-inner h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 16px;
}
.lp-cta-inner p {
    color: rgba(255,255,255,0.86);
    font-size: 1.05rem;
    margin-bottom: 36px;
}
.lp-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============ RELATED LINKS ============ */
.lp-related {
    background: var(--lp-bg-tint);
    padding: 80px 0;
}
.lp-related-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}
.lp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.lp-related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.25s var(--lp-ease), border-color 0.25s, box-shadow 0.25s;
}
.lp-related-card:hover {
    transform: translateY(-2px);
    border-color: var(--lp-accent);
    box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.08);
}
.lp-related-card strong {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}
.lp-related-card span {
    flex: 1;
    font-size: 0.84rem;
    color: var(--lp-text-light);
}
.lp-related-card svg {
    flex-shrink: 0;
    color: var(--lp-accent);
    transition: transform 0.25s;
}
.lp-related-card:hover svg { transform: translateX(3px); }

/* ============ FOOTER (랜딩 전용 간소화) ============ */
.lp-footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.lp-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
}
.lp-footer-logo img {
    height: 54px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.lp-footer-tag {
    color: rgba(255,255,255,0.7);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.lp-footer-stores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}
.lp-footer-stores a {
    color: rgba(255,255,255,0.85);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    transition: background 0.2s, border-color 0.2s;
}
.lp-footer-stores a:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}
.lp-footer-company {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.lp-footer-company strong {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}
.lp-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* ============ Fade-up 애니메이션 ============ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--lp-ease), transform 0.7s var(--lp-ease);
}
.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================================
   반응형 — 1024px 이하
==================================================================== */
@media (max-width: 1024px) {
    .lp-dual-grid { grid-template-columns: 1fr; gap: 18px; }
    .lp-dual-card { padding: 40px 32px; }
    .lp-hero { padding: 130px 0 80px; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-hero-text { max-width: 720px; margin: 0 auto; text-align: center; }
    .lp-hero-bullets { grid-template-columns: 1fr 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .lp-hero-cta { justify-content: center; }
    .lp-hero-visual { min-height: 360px; max-width: 440px; margin: 0 auto; }
    .lp-eyebrow { margin-left: auto; margin-right: auto; }

    .lp-card-grid,
    .lp-card-grid-4,
    .lp-card-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .lp-card-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .lp-screens-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .lp-stats-grid { grid-template-columns: repeat(3, 1fr); max-width: 720px; }
}

/* ====================================================================
   반응형 — 768px 이하 (태블릿)
==================================================================== */
@media (max-width: 768px) {
    .lp-section { padding: 70px 0; }
    .lp-hero { padding: 110px 0 60px; }
    .lp-section-header { margin-bottom: 40px; }

    .lp-h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
    .lp-hero-sub { font-size: 0.98rem; }
    .lp-hero-bullets {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 320px;
    }
    .lp-hero-cta { flex-direction: column; align-items: stretch; }
    .lp-btn { width: 100%; padding: 14px 20px; }

    .lp-hero-card { padding: 32px 26px; }
    .lp-hero-card-logo { height: 30px; }
    .lp-hero-card-header { padding-bottom: 14px; margin-bottom: 20px; }
    .lp-hero-card-icon { width: 60px; height: 60px; }
    .lp-hero-card-icon svg { width: 30px; height: 30px; }
    .lp-hero-card-title { font-size: 1.7rem; }
    .lp-hero-card-stats { gap: 10px; }
    .lp-hero-card-stats strong { font-size: 1.1rem; }
    .lp-hero-card-stats span { font-size: 0.7rem; }

    .lp-float { font-size: 0.78rem; padding: 8px 12px; }
    .lp-float-1 { top: 8%; left: -8px; }
    .lp-float-2 { bottom: 8%; right: -4px; }

    .lp-card-grid,
    .lp-card-grid-3,
    .lp-card-grid-4,
    .lp-card-grid-5 {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .lp-card { padding: 24px 20px; }
    .lp-card-icon { width: 44px; height: 44px; margin-bottom: 14px; }
    .lp-card-icon svg { width: 22px; height: 22px; }
    .lp-card h3 { font-size: 1.02rem; }
    .lp-card p { font-size: 0.88rem; }

    .lp-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
    .lp-step { padding: 24px 20px; }

    .lp-screens-grid { grid-template-columns: 1fr 1fr; }
    .lp-screen:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
    }

    .lp-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 100%; }
    .lp-stat { padding: 22px 8px; }

    .lp-dual { padding: 56px 0; }
    .lp-dual-grid { grid-template-columns: 1fr; gap: 16px; }
    .lp-dual-card { padding: 36px 24px; border-radius: 20px; }
    .lp-dual-card-head { margin-bottom: 24px; }
    .lp-dual-stores { gap: 8px; }
    .lp-dual-stores .lp-store { min-width: 110px; }
    .lp-dual-stores .lp-store img { height: 44px; }
    .lp-dual-contact { padding: 14px 14px; gap: 12px; }
    .lp-dual-contact strong { font-size: 0.95rem; }
    .lp-dual-contact em { font-size: 0.76rem; }

    .lp-faq-item summary { padding: 18px 18px; gap: 12px; }
    .lp-faq-question { font-size: 0.94rem; }
    .lp-faq-answer { padding: 0 18px 20px 60px; font-size: 0.9rem; }
    .lp-faq-q { width: 28px; height: 28px; font-size: 0.8rem; }

    .lp-cta-buttons { flex-direction: column; align-items: stretch; }

    .lp-footer-bottom { justify-content: center; text-align: center; }
}

/* ====================================================================
   반응형 — 520px 이하 (모바일)
==================================================================== */
@media (max-width: 520px) {
    .lp-section { padding: 56px 0; }
    .lp-hero { padding: 100px 0 50px; }

    .lp-section-header h2 { font-size: 1.55rem; }
    .lp-section-header p { font-size: 0.94rem; }
    .lp-lead { font-size: 1.02rem !important; }

    .lp-intro-body { font-size: 0.95rem; }

    .lp-card-grid,
    .lp-card-grid-3,
    .lp-card-grid-4,
    .lp-card-grid-5 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-screens-grid { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto; }
    .lp-screen:nth-child(3) { grid-column: auto; max-width: 100%; }

    .lp-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .lp-stat { padding: 18px 6px; }
    .lp-stat strong { font-size: 1.5rem; }
    .lp-stat span { font-size: 0.74rem; }

    .lp-related-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   접근성 — reduced motion
==================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-fade-up {
        opacity: 1;
        transform: none;
    }
}
