/* ============================================================
   Landing Page — 아싸뷰 × OKPOS
   Figma design tokens applied
   ============================================================ */

/* ── Design Tokens ── */
:root {
    --c-brand: #1aacbc;
    --c-brand-surface: #eef9fa;
    --c-content-strong: #1e2534;
    --c-content-default: #333c4d;
    --c-content-subtle: #72798a;
    --c-content-muted: #a0a7b4;
    --c-surface-muted: #f0f1f3;
    --c-surface-disabled: #f7f8f9;
    --c-border: #e4e6ea;
    --c-accent: #da2872;
    --c-white: #fff;
    --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
        system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo',
        'Noto Sans KR', 'Malgun Gothic', sans-serif;
    --radius-xl: 24px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --radius-pill: 999px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: var(--font); -webkit-font-smoothing: antialiased; color: var(--c-content-default); line-height: 1.6; scroll-behavior: smooth; }
body { background: var(--c-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; border: none; }
a { color: inherit; text-decoration: none; }
.lp-br--mo { display: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms; transition-duration: 0.01ms; }
}

/* ── Background Blobs ── */
.lp-main { position: relative; }
.lp-sections { display: flex; flex-direction: column; gap: 120px; }
.lp-bg {
    position: absolute; inset: 0; z-index: -1;
    overflow: hidden; pointer-events: none;
}
.lp-bg__blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(120px);
}
/* Ellipse 72 — 좌상단 민트 */
.lp-bg__blob--1 {
    width: 480px; height: 480px;
    top: -85px; left: -344px;
    background: #C1FFFA;
}
/* Ellipse 71 — 우상단 핑크 */
.lp-bg__blob--2 {
    width: 480px; height: 480px;
    top: 513px; right: -269px;
    background: #F6D2FF;
    opacity: 0.15;
}
/* Ellipse 73 — 좌중단 민트 */
.lp-bg__blob--3 {
    width: 592px; height: 659px;
    top: 1515px; left: -333px;
    background: #C7F7F3;
}
/* Ellipse 74 — 우중단 연초록 */
.lp-bg__blob--4 {
    width: 592px; height: 659px;
    top: 2087px; right: -181px;
    background: #E4F7E6;
}
/* Ellipse 75 — 좌하단 그레이 */
.lp-bg__blob--5 {
    width: 420px; height: 470px;
    top: 2785px; left: -296px;
    background: #E8E8E8;
}
/* Ellipse 76 — 우하단 민트 */
.lp-bg__blob--6 {
    width: 500px; height: 500px;
    top: 3350px; right: -211px;
    background: #C1FFFA;
}
/* Frosted glass overlay — 비활성 (블롭 자체에 filter:blur 적용) */

/* ── Container ── */
.lp-container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 80px; }

/* ── Scroll Animation ── */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* ── Common ── */
.lp-section { padding: 0; }
.lp-eyebrow { font-size: 16px; font-weight: 500; color: var(--c-brand); letter-spacing: -0.5px; margin-bottom: 8px; }
.lp-eyebrow--center { text-align: center; }
.lp-section-title { font-size: clamp(28px, 3.2vw, 36px); font-weight: 600; line-height: 1.4; color: var(--c-content-strong); letter-spacing: -1.5px; margin-bottom: 24px; }
.lp-section-title--center { text-align: center; }
.lp-badge { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500; }
.lp-badge--brand { background: var(--c-brand-surface); color: var(--c-brand); }

/* ── CTA Button (gradient) ── */
.lp-cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-weight: 600; color: var(--c-white); border-radius: var(--radius-pill);
    background: radial-gradient(2691.68% 312.54% at -5.96% 131.25%, #36B7C5 0%, #155DFC 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    white-space: nowrap; letter-spacing: -0.4px;
}
.lp-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,93,252,0.25); opacity: 0.95; }
.lp-cta-btn:active { transform: translateY(0); }
.lp-cta-btn--sm { padding: 10px 24px; font-size: 14px; }
.lp-cta-btn--lg { height: 56px; font-size: 18px; width: 100%; max-width: 340px; }
.lp-cta-btn--full { padding: 14px 24px; font-size: 16px; width: 100%; }


/* ============================================================
   HEADER
   ============================================================ */
.lp-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border-bottom: 1px solid var(--c-surface-muted);
}
.lp-header__inner { max-width: 1440px; margin: 0 auto; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 80px; }
.lp-header__logo-img { height: 20px; width: auto; }
.lp-header__right { display: flex; align-items: center; gap: 24px; }
.lp-header__badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 16px; font-weight: 500; color: var(--c-content-subtle);
    letter-spacing: -1.65px;
}
.lp-header__badge-icon { width: 33px; height: 32px; }
.lp-header__badge-accent { color: var(--c-brand); }


/* ============================================================
   HERO
   ============================================================ */
.lp-hero { padding: 120px 0 72px; position: relative; }
.lp-hero__inner { display: flex; align-items: stretch; justify-content: space-between; gap: 40px; }
.lp-hero__text { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.lp-hero__eyebrow { font-size: 18px; font-weight: 500; color: var(--c-content-subtle); letter-spacing: -1.65px; line-height: 40px; margin-bottom: 4px; }
.lp-hero__title {
    font-size: 48px; font-weight: 600; line-height: 62px; letter-spacing: -1.65px;
    color: var(--c-content-strong); margin-bottom: 24px;
}
.lp-hero__accent { color: var(--c-brand); }
.lp-hero__desc {
    font-size: 18px; font-weight: 500; line-height: 30px; letter-spacing: -1.5px;
    color: #4a5565; margin-bottom: 20px;
}
.lp-hero__desc-accent { color: var(--c-brand); }
.lp-hero__visual { flex: 1; min-width: 0; display: flex; justify-content: center; }

/* ── Hero Card Stack ── */
.lp-hero__cards {
    position: relative;
    width: 617px;
    height: 493px;
    margin-top: 40px;
}
.lp-hero__card {
    position: absolute;
    width: 540px;
}
.lp-hero__card--1 {
    top: 0; left: 70px;
    transform: rotate(2.03deg);
    z-index: 1;
}
.lp-hero__card--2 {
    top: 130px; left: 40px;
    transform: rotate(-5.01deg);
    z-index: 2;
}
.lp-hero__card--3 {
    top: 240px; left: 65px;
    transform: rotate(2.83deg);
    z-index: 1;
}
.lp-hero__card--mo { display: none; }

/* ── Hero Stats Card ── */
.lp-hero__stats {
    position: absolute;
    top: 89px; left: -30px;
    width: 236px;
    z-index: 3;
    border-radius: 16px;
    border: 1px solid rgba(228, 230, 234, 0.4);
    background: linear-gradient(322deg, rgba(255, 255, 255, 0.00) -51.5%, rgba(255, 255, 255, 0.30) 90.37%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.05);
    padding: 24px 16px 16px;
    animation: lp-float 3s ease-in-out infinite;
}
.lp-hero__stats-badge {
    position: absolute;
    top: -16px; right: 10px;
    background: var(--c-brand);
    color: #fff;
    font-size: 16px; font-weight: 500;
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    letter-spacing: -0.5px;
}
.lp-hero__stats-body {
    display: flex; flex-direction: column;
    justify-content: space-between;
    height: 177px;
}
.lp-hero__stats-title {
    font-size: 22px; font-weight: 600;
    color: #2c2c2c; letter-spacing: -1.65px;
    line-height: 32px;
}
.lp-hero__stats-sub {
    font-size: 14px; font-weight: 500;
    color: var(--c-content-subtle);
    line-height: 24px; letter-spacing: -1.652px;
}
.lp-hero__stats-amount {
    font-size: 36px; font-weight: 500;
    color: #2c2c2c; letter-spacing: -1.65px;
    line-height: 32px;
}
.lp-hero__stats-num { color: var(--c-brand); }
.lp-hero__stats-detail {
    font-size: 14px; font-weight: 500;
    color: var(--c-content-subtle);
    line-height: 24px; margin-top: 4px;
    letter-spacing: -1.652px;
}

/* ── Hero Card Entrance Animation ── */
.lp-hero__card {
    opacity: 0;
    transform-origin: center center;
}
.lp-hero__stats {
    opacity: 0;
    transform: scale(0.95);
}
[data-animate].is-visible .lp-hero__card--1 {
    animation: lp-card-in-1 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
[data-animate].is-visible .lp-hero__card--2 {
    animation: lp-card-in-2 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}
[data-animate].is-visible .lp-hero__card--3 {
    animation: lp-card-in-3 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
[data-animate].is-visible .lp-hero__stats {
    animation: lp-stats-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes lp-card-in-1 {
    from { opacity: 0; transform: translateY(-30px) rotate(2.03deg); }
    to   { opacity: 1; transform: translateY(0) rotate(2.03deg); }
}
@keyframes lp-card-in-2 {
    from { opacity: 0; transform: translateY(-30px) rotate(-5.01deg); }
    to   { opacity: 1; transform: translateY(0) rotate(-5.01deg); }
}
@keyframes lp-card-in-3 {
    from { opacity: 0; transform: translateY(-30px) rotate(2.83deg); }
    to   { opacity: 1; transform: translateY(0) rotate(2.83deg); }
}
@keyframes lp-stats-in {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes lp-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1); }
}

/* 모바일 카드 애니메이션 오버라이드 */
@media (max-width: 768px) {
    .lp-hero__desc,
    .lp-hero__cta {
        opacity: 0;
        transform: translateY(16px);
    }
    .lp-hero__desc.is-visible {
        animation: lp-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .lp-hero__cta.is-visible {
        height: 48px;
        font-size: 16px;
        width: 220px;
        animation: lp-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    [data-animate].is-visible .lp-hero__card--mo {
        animation: lp-card-in-1-mo 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    }
    [data-animate].is-visible .lp-hero__stats {
        animation: lp-stats-in-mo 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }
    @keyframes lp-card-in-1-mo {
        from { opacity: 0; transform: translateX(-50%) translateY(-20px) rotate(2.55deg); }
        to   { opacity: 1; transform: translateX(-50%) translateY(0) rotate(2.55deg); }
    }
    @keyframes lp-stats-in-mo {
        from { opacity: 0; transform: rotate(-1.24deg) scale(0.95); }
        to   { opacity: 1; transform: rotate(-1.24deg) scale(1); }
    }
    @keyframes lp-fade-up {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}


/* ============================================================
   매출 투명성
   ============================================================ */
.lp-transparency { padding-top: 0; }
.lp-transparency__card {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border-radius: 22px;
    padding: 32px;
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(135deg, #e4e6ea 0%, #fbfbfb 40%);
    box-shadow: 0 15.22px 22.383px rgba(180, 188, 200, 0.1);
}
.lp-transparency__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.lp-transparency__heading { display: flex; flex-direction: column; gap: 4px; }
.lp-transparency__eyebrow {
    font-size: 20px; font-weight: 500; color: var(--c-brand);
    line-height: 36px; letter-spacing: -1.652px;
}
.lp-transparency__title {
    font-size: 36px; font-weight: 600; line-height: 50.5px;
    color: #2c2c2c; letter-spacing: -1.652px;
}
.lp-transparency__desc {
    font-size: 20px; font-weight: 400; line-height: 32px;
    letter-spacing: -1.652px;
    background: linear-gradient(180deg, #2C3745 0%, #7E8A9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-transparency__visual { flex: 0 0 549px; height: 261px; display: flex; }
.lp-transparency__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--c-surface-muted);
}


/* ============================================================
   프로세스
   ============================================================ */
/* 프로세스 헤더 */
.lp-process__header { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.lp-process__eyebrow {
    font-size: 20px; font-weight: 500; color: var(--c-brand);
    line-height: 36px; letter-spacing: -1.652px;
}
.lp-process__title {
    font-size: 36px; font-weight: 600; color: #2c2c2c;
    line-height: 50.5px; letter-spacing: -1.652px;
}

/* 프로세스 그리드 */
.lp-process__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

/* 프로세스 카드 */
.lp-process__card {
    background: #fff;
    border: 0.895px solid #e6e6e6;
    border-radius: 22px;
    box-shadow: 0 15.22px 44.766px -10.744px rgba(196, 203, 214, 0.1);
    padding: 24px 16px;
    display: flex; flex-direction: column; gap: 8px; align-items: center;
    position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-process__card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(196, 203, 214, 0.2); }

/* 카드 상단 텍스트 */
.lp-process__card-top { text-align: center; }
.lp-process__card-sub {
    font-size: 16px; font-weight: 500; color: var(--c-content-muted);
    line-height: 16px; letter-spacing: -1.79px;
    display: block; margin-bottom: 8px;
}
.lp-process__card-heading {
    font-size: 22px; font-weight: 500; color: #2c2c2c;
    line-height: 32px; letter-spacing: -1.79px;
}

/* 카드 비주얼 */
.lp-process__card-visual {
    width: 100%; height: 210px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.lp-process__card-visual img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* 카드 하단 민트 영역 */
.lp-process__card-bottom {
    width: 100%; padding: 12px;
    background: var(--c-brand-surface);
    border-radius: 16px;
    display: flex; flex-direction: column; gap: 8px;
}
.lp-process__card-label {
    font-size: 16px; font-weight: 500; color: var(--c-brand);
    line-height: 16px; letter-spacing: -1.79px;
}
.lp-process__card-answer {
    font-size: 20px; font-weight: 500; color: #2c2c2c;
    line-height: 24px; letter-spacing: -1.79px;
}
.lp-process__card-bottom { position: relative; }
.lp-process__card-robot {
    position: absolute;
    right: -4px; top: -20px;
    width: 75px; height: auto;
}
.lp-process__card-robot--4 { top: -30px; }


/* ============================================================
   온보딩 안내
   ============================================================ */
/* 온보딩 카드 */
.lp-onboarding__card {
    background: var(--c-brand-surface);
    border-radius: 22px;
    padding: 32px;
    display: flex; align-items: center; gap: 32px;
}
.lp-onboarding__video {
    flex: 0 0 510px; height: 315px;
    border-radius: 24px; overflow: hidden;
}
.lp-onboarding__video video {
    width: 100%; height: 100%; object-fit: cover;
}
.lp-onboarding__text {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    height: 315px;
}
.lp-onboarding__top { display: flex; flex-direction: column; gap: 16px; }
.lp-onboarding__heading { display: flex; flex-direction: column; gap: 4px; }
.lp-onboarding__title {
    font-size: 32px; font-weight: 600; color: #2c2c2c;
    line-height: 48px; letter-spacing: -1.652px;
}
.lp-onboarding__subtitle {
    font-size: 24px; font-weight: 500; color: var(--c-brand);
    line-height: 36px; letter-spacing: -1.652px;
}
.lp-onboarding__desc {
    font-size: 20px; font-weight: 400; line-height: 32px;
    letter-spacing: -1.652px;
    background: linear-gradient(180deg, #2C3745 0%, #7E8A9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-onboarding__bar {
    width: 100%; 
    padding: 0 16px;
    background: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: space-between;
}
.lp-onboarding__bar-text {
    font-size: 20px; font-weight: 500; color: var(--c-brand);
    line-height: 32px; letter-spacing: -1.652px;
}
.lp-onboarding__bar-emoji { font-size: 40px; }


/* ============================================================
   리뷰 선순환
   ============================================================ */
/* 선순환 헤더 */
.lp-cycle__header {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    margin-bottom: 12px;
}
.lp-cycle__emoji { width: 56px; height: 56px; }
.lp-cycle__eyebrow {
    font-size: 20px; font-weight: 500; color: var(--c-brand);
    line-height: 36px; letter-spacing: -1.652px;
}
.lp-cycle__title {
    font-size: 36px; font-weight: 600; color: #2c2c2c;
    line-height: 50.5px; letter-spacing: -1.652px; text-align: center;
}
.lp-cycle__desc {
    font-size: 18px; font-weight: 500; line-height: 28px;
    letter-spacing: -1.1px; text-align: center;
    background: linear-gradient(180deg, #2C3745 0%, #7E8A9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* 선순환 desc: PC는 3문장(문장별 줄바꿈), 모바일은 축약 버전 */
.lp-cycle__desc--mo { display: none; }

/* 선순환 다이어그램 */
.lp-cycle__visual { display: flex; justify-content: center; padding: 24px 0; }
.lp-cycle__img { max-width: 1080px; width: 100%; }
.lp-cycle__img--mo { display: none; }


/* ============================================================
   CTA 배너 섹션
   ============================================================ */
/* CTA 배너 */
.lp-cta-section { margin: 120px 0; }
.lp-cta-section .lp-container { max-width: none; padding: 0; }
.lp-cta-section__card {
    overflow: hidden;
    background: radial-gradient(2339.08% 205.57% at -3.96% 50%, rgba(44, 196, 239, 0.40) 0%, rgba(44, 196, 239, 0.00) 100%), #36B7C5;
    padding: 48px 96px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative;
}
.lp-cta-section__text {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 8px;
}
.lp-cta-section__eyebrow {
    font-size: 20px; font-weight: 500; color: #fff;
    line-height: 24px; letter-spacing: -1.1px;
}
.lp-cta-section__title {
    font-size: 34.694px; font-weight: 600; color: #fff;
    line-height: 47.5px; letter-spacing: -1.652px;
}
.lp-cta-section__desc {
    position: relative; z-index: 1;
    font-size: 18px; font-weight: 500; color: #fff;
    opacity: 0.7;
    line-height: 24px; letter-spacing: -1.1px;
}
.lp-cta-section__circle {
    position: absolute;
    right: -50px; top: 35px;
    width: 709px; height: auto;
}
.lp-cta-section__illust {
    position: absolute; z-index: 1;
    right: 0; top: -41px;
    width: 463px; height: auto;
}


/* ============================================================
   FAQ
   ============================================================ */
.lp-faq { padding-bottom: 120px; }
.lp-faq__title { margin-bottom: 40px; font-size: 28px; }
.lp-faq__list { max-width: 800px; margin: 0 auto; }
.lp-faq__item { border-bottom: 1px solid var(--c-border); }
.lp-faq__item:last-child { border-bottom: none; }
.lp-faq__q {
    width: 100%; display: flex; align-items: center; gap: 12px;
    padding: 20px 0; font-size: 18px; font-weight: 500; text-align: left; letter-spacing: -0.5px;
    transition: color 0.2s ease;
}
.lp-faq__q:hover { color: var(--c-brand); }
.lp-faq__q-mark { font-weight: 600; color: var(--c-brand); flex-shrink: 0; }
.lp-faq__q-text { flex: 1; }
.lp-faq__q-toggle {
    flex-shrink: 0; display: flex; color: var(--c-content-muted);
    transition: transform 0.3s ease;
}
.lp-faq__item.is-open .lp-faq__q-toggle { transform: rotate(45deg); }
.lp-faq__a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
    padding: 0 0 0 28px;
}
.lp-faq__item.is-open .lp-faq__a { max-height: 300px; padding: 0 0 20px 28px; }
.lp-faq__a p { font-size: 15px; color: var(--c-content-subtle); line-height: 1.7; letter-spacing: -0.5px; }


/* ============================================================
   하단 고정 바 (PC/MO 통합)
   ============================================================ */
.lp-bottom-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    background: radial-gradient(838.77% 768.4% at 26.8% 132.03%, #3CCBDB 0%, #155DFC 100%), linear-gradient(90deg, #155DFC -13.58%, #3CCBDB 108.77%), linear-gradient(90deg, #155DFC 0%, #9810FA 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 8px 80px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-bottom-bar.is-visible { transform: translateY(0); }
.lp-bottom-bar__inner {
    max-width: 1440px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.lp-bottom-bar__text {
    font-size: 18px; font-weight: 500; color: #fff;
    line-height: 32px; letter-spacing: -1.652px;
}
.lp-bottom-bar__cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #27a2b8;
    font-size: 18px; font-weight: 500;
    padding: 12px 24px; border-radius: 99px;
    line-height: 32px; letter-spacing: -1.652px;
    height: 48px;
    transition: opacity 0.2s ease;
}
.lp-bottom-bar__cta:hover { opacity: 0.9; }
.lp-bottom-bar__cta svg { width: 24px; height: 24px; }


/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
    .lp-container { padding: 0 32px; }
    .lp-header__inner { padding: 0 32px; }
    .lp-header__right { display: none; }

    .lp-hero__inner { flex-direction: column; align-items: center; }
    .lp-hero__text { flex: none; width: 100%; text-align: center; }
    .lp-hero__title { font-size: 40px; line-height: 52px; }
    .lp-cta-btn--lg { max-width: 360px; margin: 0 auto; }
    .lp-hero__desc br { display: none; }
    .lp-hero__cards { width: 560px; height: 440px; }
    .lp-hero__card { width: 480px; }

    .lp-transparency__card { flex-direction: column; padding: 32px; gap: 24px; }
    .lp-transparency__text { flex: none; width: 100%; }
    .lp-transparency__visual { flex: none; width: 100%; height: auto; }
    .lp-process__grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .lp-bg__blob { opacity: 0.15; }
    .lp-bg__blob--2 { opacity: 0.08; }
    .lp-container { padding: 0 16px; }
    .lp-header__inner { padding: 0 20px; height: 56px; justify-content: center; }
    .lp-header__logo-img { height: 18px; }
    .lp-section { padding: 0; }

    .lp-hero { padding: 80px 0 64px; }
    .lp-hero__eyebrow { font-size: 16px; }
    .lp-hero__title { font-size: 32px; line-height: 48px; }
    .lp-hero__title br { display: none; }
    .lp-hero__desc { font-size: 16px; margin-bottom: 0; }
    .lp-hero__desc br { display: none; }
    .lp-hero__cta { max-width: 100%; }

    .lp-sections { gap: 80px; }

    /* 모바일 히어로 레이아웃: 아이브로우+타이틀 → 카드 → 설명 → CTA */
    .lp-hero__inner { flex-direction: column; align-items: center; gap: 0; }
    .lp-hero__text { display: contents; }
    .lp-hero__eyebrow { order: 1; text-align: center; margin-bottom: 4px; height:32px;}
    .lp-hero__title { order: 2; font-size: 30px; line-height: 44px; text-align: center; margin-bottom: 0; letter-spacing: -1.65px; }
    .lp-hero__title br { display: none; }
    .lp-hero__title br.lp-br--mo { display: inline; }
    .lp-br--mo { display: inline; }
    .lp-hero__visual { order: 3; width: 100%; margin-top: 20px; }
    .lp-hero__desc { order: 4; font-size: 14px; line-height: 22px; text-align: center; margin-top: 24px; margin-bottom: 0; letter-spacing: -0.5px; }
    .lp-hero__desc br { display: block; }
    .lp-hero__cta { order: 5; max-width: 300px; width: 100%; margin-top: 24px; }

    /* 모바일 카드 스택 */
    .lp-hero__cards { width: 100%; max-width: 343px; height: 210px; margin: 0 auto; }
    .lp-hero__card { width: 310px; }
    .lp-hero__card--pc { display: none; }
    .lp-hero__card--mo {
        display: block;
        top: 0; left: 50%;
        transform: translateX(-50%) rotate(2.55deg);
        z-index: 1;
    }
    .lp-hero__stats {
        top: 102px; left: 10%; bottom: auto;
        width: 265px;
        padding: 14px 11px 11px;
        border-radius: 11.112px;
        border: 0.695px solid #E4E6EA;
        background: linear-gradient(322deg, rgba(255, 255, 255, 0.00) -51.5%, rgba(255, 255, 255, 0.30) 90.37%);
        box-shadow: 0 2.778px 41.671px 0 rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(9.723px);
        -webkit-backdrop-filter: blur(9.723px);
        transform: rotate(-1.24deg);
    }
    .lp-hero__stats-badge { font-size: 11px; padding: 3px 6px; top: -11px; right: 16px; }
    .lp-hero__stats-body {
        height: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: end;
    }
    .lp-hero__stats-top { grid-column: 1 / -1; margin-bottom: 8px; }
    .lp-hero__stats-title { font-size: 15px; line-height: 22px; }
    .lp-hero__stats-sub { font-size: 10px; line-height: 17px; letter-spacing: -1px; }
    .lp-hero__stats-bottom { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 8px; }
    .lp-hero__stats-amount { font-size: 25px; line-height: 22px; }
    .lp-hero__stats-detail { font-size: 10px; line-height: 17px; margin-top: 0; letter-spacing: -1px; }

    /* 모바일 CTA 배너 */
    .lp-cta-section { margin: 0; }
    .lp-cta-section__circle { right: -140px; width: 356px; top: 11px; }
    .lp-cta-section__card { padding: 16px; margin:62px 0; gap: 4px; }
    .lp-cta-section__text { gap: 1px; }
    .lp-cta-section__eyebrow { font-size: 14px; line-height: 18px; }
    .lp-cta-section__title { font-size: 22px; line-height: 28px; }
    .lp-cta-section__desc { font-size: 13px; line-height: 24px; opacity: 0.8; }
    .lp-cta-section__desc br { display: none; }
    .lp-cta-section__illust { display: none; }

    /* 모바일 선순환 */
    .lp-cycle__eyebrow { font-size: 14px; line-height: 22px; letter-spacing: -1px; }
    .lp-cycle__title { font-size: 24px; line-height: 32px; }
    .lp-cycle__desc { font-size: 14px; line-height: 22px; letter-spacing: -1px; }
    .lp-cycle__desc--pc { display: none; }
    .lp-cycle__desc--mo { display: block; }
    .lp-cycle__img--pc { display: none; }
    .lp-cycle__img--mo { display: block; }
    .lp-cycle__visual { padding: 0; }
    .lp-cycle__header { gap: 8px; }

    /* 모바일 카드 radius 통일 */
    .lp-transparency__card,
    .lp-process__card,
    .lp-onboarding__card { border-radius: 16px; }

    /* 모바일 온보딩 — 헤딩 → 동영상 → 설명 → 바 순서 */
    .lp-onboarding__card { flex-direction: column; gap: 16px; padding: 24px; }
    .lp-onboarding__text { display: contents; }
    .lp-onboarding__top { display: contents; }
    .lp-onboarding__heading { order: 1; align-items: center; text-align: center; }
    .lp-onboarding__video { order: 2; flex: none; width: 100%; height: 347px; border-radius: 16px; }
    .lp-onboarding__desc { order: 3; font-size: 16px; line-height: 24px; text-align: center; }
    .lp-onboarding__bar { order: 4; padding: 8px 12px; }
    .lp-onboarding__title { font-size: 24px; line-height: 32px; }
    .lp-onboarding__subtitle { font-size: 14px; line-height: 16px; letter-spacing: -1.2px; }
    .lp-onboarding__bar-text { font-size: 16px; line-height: 24px; }

    /* 모바일 매출 투명성 */
    .lp-transparency__card { padding: 16px; gap: 16px; }
    .lp-transparency__text { gap: 8px; }
    .lp-transparency__eyebrow { font-size: 14px; line-height: 22px; letter-spacing: -1px; }
    .lp-transparency__title { font-size: 24px; line-height: 32px; }
    .lp-transparency__desc { font-size: 14px; line-height: 22px; letter-spacing: -1px; }
    .lp-transparency__visual img { height: auto; border-radius: 12px; }

    .lp-process__grid { grid-template-columns: 1fr; gap: 16px; }
    .lp-process__header { margin-bottom: 36px; }
    .lp-process__header { align-items: center; text-align: center; }
    .lp-process__eyebrow { font-size: 14px; line-height: 22px; letter-spacing: -1px; }
    .lp-process__title { font-size: 24px; line-height: 32px; }
    .lp-process__card { align-items: flex-start; }
    .lp-process__card-top { text-align: left; }
    .lp-process__card-sub { font-size: 16px; margin-bottom: 4px; }
    .lp-process__card-heading { font-size: 18px; line-height: 24px; letter-spacing: -1.2px; }
    .lp-process__card-heading br { display: none; }
    .lp-process__card-label { font-size: 14px; }
    .lp-process__card-answer { font-size: 18px; letter-spacing: -1.2px; }
    .lp-section-title br { display: none; }
    .lp-transparency__title br { display: none; }

    .lp-faq__title { font-size: 22px; }
    .lp-faq__q { font-size: 15px; }

    /* 모바일 FAQ */
    .lp-faq { padding-bottom: 100px; }

    /* 모바일 하단 바 — pill 형태 */
    .lp-bottom-bar {
        padding: 8px 16px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        background: none; box-shadow: none;
    }
    .lp-bottom-bar__inner {
        background: radial-gradient(838.77% 768.4% at 26.8% 132.03%, #3CCBDB 0%, #155DFC 100%), linear-gradient(90deg, #155DFC -13.58%, #3CCBDB 108.77%), linear-gradient(90deg, #155DFC 0%, #9810FA 100%);
        border-radius: 99px;
        padding: 0 8px 0 20px;
        height: 54px;
        box-shadow: 0 10px 50px -12px rgba(0, 0, 0, 0.15);
    }
    .lp-bottom-bar__text {
        font-size: 14px; font-weight: 600;
        letter-spacing: -0.5px; line-height: 20px;
        text-align: left; flex: 1;
    }
    .lp-bottom-bar__text-pc { display: none; }
    .lp-bottom-bar__cta {
        font-size: 14px; height: auto;
        padding: 4px 16px; gap: 4px;
    }
    .lp-bottom-bar__cta svg { width: 16px; height: 16px; }
}
