/**
 * mobile.css — 반응형 전용 v5.0
 *
 * 로드 순서: main.css 이후 → 같은 specificity에서 cascade로 우선.
 * !important: main.css !important 패치(최대 3-class)를 이기기 위해 동일 selectivity 사용.
 *
 * 브레이크포인트
 *  ≥ 961px  PC (히어로 100vh 재설정)
 *  ≤ 1024px  대형 태블릿 (헤더 네비 축소)
 *  ≤  960px  태블릿 레이아웃 전환
 *  ≤  767px  모바일
 *  ≤  480px  소형 모바일
 */

/* ════════════════════════════════════════════════════════
   전역 — 가로 스크롤 방지
   overflow-x: clip → scroll container 미생성으로 position:sticky 정상 동작
   overflow-x: hidden → body를 scroll container로 만들어 sticky를 깨뜨림
════════════════════════════════════════════════════════ */
html { overflow-x: clip; }
body { overflow-x: clip; }
img  { max-width: 100%; height: auto; }

/* 가격 슬라이더 화살표: 모바일 전용 — 데스크톱에서 숨김 */
.ll-plan-arrow { display: none; }
/* 래퍼: 데스크톱에서 투명화 — 자식 요소가 부모 레이아웃을 그대로 상속 */
.ll-plan-group-wrap { display: contents; }

/* ════════════════════════════════════════════════════════
   ≥ 961px — PC
   히어로 100vh로 재설정: PATCH M의 140vh가 만드는 검은 공백 제거
   JS에서 pin:true + end:'+=80vh'로 스크롤 애니메이션 확보
════════════════════════════════════════════════════════ */
@media (min-width: 961px) {
    .ll-hero-sequence {
        height: 100vh !important;
        min-height: 100vh !important;
    }
    .ll-hero-sequence .sticky,
    .ll-hero-sequence .h-screen { height: 100vh !important; }

    /* GSAP pin spacer 배경: 히어로 언핀 후 투명 spacer가 흰 공백으로 보이는 문제 해결.
     * GSAP는 핀된 요소 다음에 <div style="height:...px"> 를 삽입하므로
     * 인접 형제 셀렉터로 정확히 타겟해 black 배경 부여. */
    .ll-hero-sequence + div[style] {
        background: #000000 !important;
    }
}

/* ════════════════════════════════════════════════════════
   ≤ 1024px — 대형 태블릿
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* ── 헤더: 3열 → 2열, CTA 숨김 ── */
    .ll-header {
        grid-template-columns: 1fr auto !important;
        padding: 0 24px !important;
    }
    .ll-header > .ll-nav__cta { display: none !important; }
    .ll-header .ll-header__pill .ll-nav { display: none !important; }
    .ll-header .ll-header__pill .ll-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    /* 헤더 필: 배경·블러·그림자 완전 제거 → 햄버거 아이콘만 표시 */
    .ll-header .ll-header__pill {
        padding: 8px !important;
        gap: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .ll-header.is-scrolled .ll-header__pill { box-shadow: none !important; }

    /* ── 햄버거 3줄 — 배경 없이 가로선만 ── */
    .ll-hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 24px !important;
        height: 24px !important;
    }
    .ll-hamburger__line {
        display: block !important;
        width: 24px !important;
        height: 2px !important;
        border-radius: 2px !important;
        background: #ffffff !important;    /* 기본: 어두운 배경(히어로) → 흰색 */
        transition: background 0.22s ease !important;
    }

    /* 밝은 배경 위에서 → 검은 줄 */
    .ll-header.is-on-light .ll-hamburger__line { background: #0c0c0c !important; }
    /* 어두운 배경 위에서 → 흰 줄 */
    .ll-header.is-on-dark .ll-hamburger__line  { background: #ffffff !important; }

    /* ── 가격: 3열 → 1열 ── */
    .ll-plan-group.is-active {
        grid-template-columns: 1fr !important;
        max-width: 480px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* ── 햄버거: main.css 노란 필(#cfff24) → 일반 투명 아이콘 버튼으로 리셋 ── */
    .ll-header__pill .ll-menu-toggle {
        min-width: 40px !important;
        max-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        padding: 9px !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        color: inherit !important;
        overflow: visible !important;
    }
    /*
     * main.css @media(max-width:900px)의 :not() 규칙이 specificity(0,5,1)+!important로
     * .ll-hamburger를 display:none 처리합니다. 이를 무력화하려면 동일 specificity +
     * 동일 !important 상태에서 cascade(나중 로드) 우선이 필요합니다.
     * .ll-header(+1) .ll-header__pill(+1) .ll-menu-toggle(+1) span(+0,0,1) .ll-hamburger×2(+2)
     * = (0,5,1) — EQUAL → mobile.css가 나중 로드되므로 cascade 우선 적용
     */
    .ll-header .ll-header__pill .ll-menu-toggle > span.ll-hamburger.ll-hamburger {
        display: flex !important;
    }
}

/* ════════════════════════════════════════════════════════
   ≤ 960px — 태블릿
════════════════════════════════════════════════════════ */
@media (max-width: 960px) {

    /* ── 컨테이너 ── */
    .ll-container { width: min(100% - 40px, var(--ll-container)) !important; }

    /* ── 섹션 패딩 ── */
    .ll-roadblocks { padding-top: 80px !important; }
    .ll-portfolio, .ll-process, .ll-pricing, .ll-faq {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    /* ── 히어로: 100svh (iOS 주소창 제외, dvh 폴백) ── */
    .ll-hero-sequence {
        height: 100dvh !important;
        min-height: 100dvh !important;
    }
    .ll-hero-sequence .sticky,
    .ll-hero-sequence .h-screen { height: 100dvh !important; }
    @supports (height: 100svh) {
        .ll-hero-sequence { height: 100svh !important; min-height: 100svh !important; }
        .ll-hero-sequence .sticky,
        .ll-hero-sequence .h-screen { height: 100svh !important; }
    }
    .ll-hero-sequence__bottom {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 28px 32px !important;
    }
    .ll-hero-sequence__title {
        font-size: clamp(56px, 13vw, 200px) !important;
        letter-spacing: -0.065em !important;
    }
    .ll-hero-quote { display: none !important; }

    /* ── 문제제기 ── */
    .ll-roadblocks__intro h2 { font-size: clamp(42px, 7vw, 60px) !important; line-height: 1.05 !important; }
    .ll-roadblocks__intro > p:not(.ll-eyebrow) { font-size: 16px !important; }
    .ll-roadblocks__solutions { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .ll-rb-card { min-height: 320px !important; }
    .ll-rb-card:nth-child(2n) { border-right: none !important; }
    .ll-rb-card:last-child    { border-right: none !important; }

    /* ── 포트폴리오 ── */
    .ll-portfolio__head { grid-template-columns: 1fr !important; gap: 20px !important; }
    .ll-portfolio h2, .ll-portfolio__head h2 { font-size: clamp(52px, 9vw, 78px) !important; line-height: 1.0 !important; }
    .ll-portfolio__head h2 span { white-space: normal !important; }

    /* ── 프로세스 ── */
    .ll-process__layout {
        display: block !important;
        max-height: none !important;
        grid-template-columns: unset !important;
        gap: 0 !important;
    }
    .ll-process__aside { position: static !important; display: none !important; }

    /* ── 가격 ── */
    .ll-section-title h2, .ll-pricing .ll-section-title h2 { font-size: clamp(38px, 6vw, 58px) !important; }
    /* 스와이프 힌트 pseudo-element 제거 */
    .ll-pricing::after { content: none !important; display: none !important; }

    /* ── FAQ ── */
    .ll-faq__grid { grid-template-columns: 1fr !important; gap: 32px !important; min-height: 0 !important; }
    .ll-faq__title { position: static !important; max-width: none !important; }
    .ll-faq h2, .ll-faq__title h2 { font-size: clamp(38px, 6vw, 54px) !important; }

    /* ── CTA 배너 (태블릿: 2열, phone 우하단) ── */
    .ll-cta-banner { padding-top: 72px !important; overflow: visible !important; }
    .ll-cta-banner .ll-cta-banner__inner.ll-container {
        position: relative !important;
        grid-template-columns: 1fr 200px !important;
        min-height: 340px !important;
        padding: 44px 0 0 44px !important;
        align-items: center !important;
        overflow: hidden !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__copy {
        align-self: center !important; padding-right: 20px !important;
        position: relative !important; z-index: 2 !important; max-width: 100% !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container h2 {
        font-size: clamp(28px, 3.8vw, 44px) !important;
        line-height: 1.18 !important; margin-bottom: 16px !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__copy > span {
        display: block !important; font-size: 13px !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-wrap {
        position: absolute !important;
        right: 0 !important; bottom: 0 !important; top: auto !important; left: auto !important;
        width: 200px !important; height: 340px !important;
        transform: none !important; margin: 0 !important;
        display: flex !important; align-items: flex-end !important; justify-content: center !important;
        pointer-events: none !important; z-index: 3 !important; min-width: 0 !important; max-width: none !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-phone,
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-phone.ll-kakao-phone--iphone {
        width: 180px !important; height: 354px !important;
        border-radius: 38px !important; border-width: 6px !important;
        padding: 0 !important; overflow: hidden !important; transform: none !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-status,
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-head,
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-input { display: flex !important; }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-msg {
        font-size: 10px !important; word-break: keep-all !important;
        overflow-wrap: break-word !important; white-space: normal !important;
    }

    /* ── 플로팅 배너 위치 ── */
    .ll-renewal-pill { left: 16px !important; right: 16px !important; bottom: 18px !important; transform: none !important; }
    .ll-renewal-pill.is-shown { transform: none !important; }
    .ll-social-fab { bottom: 82px !important; right: 16px !important; }
}

/* ════════════════════════════════════════════════════════
   ≤ 767px — 모바일
════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

    /* ── 컨테이너 ── */
    .ll-container { width: min(100% - 32px, var(--ll-container)) !important; }

    /* ── 헤더 ── */
    .ll-header { padding: 0 16px !important; }
    .ll-header > .ll-logo img { max-height: 28px !important; width: auto !important; }

    /* ── 섹션 패딩 — 모바일 전 섹션 60px 상하 통일 ── */
    .ll-roadblocks,
    .ll-portfolio, .ll-process, .ll-pricing, .ll-faq, .ll-cta-banner {
        padding-top: 60px !important; padding-bottom: 60px !important;
    }

    /* ── 히어로 ── */
    .ll-hero-sequence__content { justify-content: flex-end !important; }
    .ll-hero-sequence__bottom { padding: 0 20px 24px !important; }
    .ll-hero-sequence__title {
        font-size: clamp(44px, 15vw, 140px) !important;
        letter-spacing: -0.06em !important; line-height: 0.9 !important;
    }

    /* ── 타이틀 ── */
    .ll-roadblocks__intro h2 { font-size: clamp(34px, 10vw, 50px) !important; line-height: 1.08 !important; }
    .ll-roadblocks__intro > p:not(.ll-eyebrow) { font-size: 15px !important; }
    .ll-portfolio h2, .ll-portfolio__head h2 { font-size: clamp(38px, 12vw, 58px) !important; line-height: 1.0 !important; }
    .ll-section-title h2, .ll-pricing .ll-section-title h2 { font-size: clamp(30px, 9vw, 46px) !important; }
    .ll-faq h2, .ll-faq__title h2 { font-size: clamp(30px, 9vw, 46px) !important; }
    .ll-process__head h2 { font-size: clamp(28px, 8.5vw, 42px) !important; margin-bottom: 24px !important; }

    /* ── 문제제기 1열 ── */
    .ll-roadblocks__solutions { grid-template-columns: 1fr !important; }
    .ll-rb-card {
        min-height: 0 !important; border-right: none !important;
        border-bottom: 1px solid rgba(23,28,29,0.1) !important;
    }
    .ll-rb-card:last-child { border-bottom: none !important; }
    .ll-rb-card__body { padding: 22px 20px 26px !important; }
    .ll-rb-card__body h3 { font-size: 20px !important; }

    /* ── 포트폴리오 ── */
    .ll-portfolio__head { grid-template-columns: 1fr !important; gap: 16px !important; }
    .ll-portfolio__head h2 span { white-space: normal !important; }
    .ll-portfolio__rail { gap: 10px !important; margin-top: 32px !important; }
    .ll-portfolio__rail figure { width: clamp(200px, 72vw, 280px) !important; min-width: 0 !important; }
    .ll-portfolio__cta-wrap { padding: 36px 0 !important; }

    /* ── 프로세스: dydpJzY 가로 스크롤 갤러리 ──
       JS(initProcessHorizontalScroll)가 stage를 flex row + x translate.
       layout은 overflow:hidden으로 뷰포트 바깥 카드를 클리핑. */
    .ll-process .ll-process__layout {
        display: block !important;
        max-height: none !important;
        grid-template-columns: unset !important;
        gap: 0 !important;
        /* 컨테이너 제약 해제 → 전체 뷰포트 폭 사용 */
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden !important;  /* 가로로 삐져나온 카드 클리핑 */
    }
    .ll-process .ll-process__aside { display: none !important; }
    .ll-process .ll-process__stage {
        min-height: 0 !important;
        position: static !important;
        overflow: visible !important;  /* GSAP x translate 허용 */
    }
    /* 패널 공통 카드 스타일 — GSAP가 width·position 제어 */
    .ll-process .ll-process__panel {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        pointer-events: auto !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, #ffffff 0%, #f5f5f0 100%) !important;
        border: 1px solid rgba(32,37,39,0.08) !important;
        box-shadow: 0 4px 20px rgba(32,37,39,0.06) !important;
        padding: 24px 20px 28px !important;
        margin-bottom: 0 !important;
        transition: opacity 0.28s ease, box-shadow 0.28s ease !important;
    }
    /* 비활성 카드: 살짝 흐림으로 현재 카드 강조 */
    .ll-process .ll-process__panel:not(.is-active) {
        opacity: 0.55 !important;
        margin-bottom: 0 !important;
    }
    /* 활성 카드: 선명 + 그림자 강조 */
    .ll-process .ll-process__panel.is-active {
        opacity: 1 !important;
        box-shadow: 0 8px 30px rgba(32,37,39,0.13) !important;
        margin-bottom: 0 !important;
    }
    .ll-process .ll-process__panel-head {
        display: flex !important; align-items: flex-start !important;
        gap: 12px !important; margin-bottom: 12px !important;
    }
    .ll-process .ll-process__panel-head b {
        flex-shrink: 0 !important; width: 30px !important; height: 30px !important;
        font-size: 11px !important; margin-top: 2px !important;
    }
    .ll-process .ll-process__panel-head h3 {
        font-size: clamp(16px, 5vw, 22px) !important; line-height: 1.3 !important; margin: 0 !important;
    }
    .ll-process .ll-process__desc { font-size: 13.5px !important; line-height: 1.65 !important; margin: 0 0 10px !important; }
    .ll-process .ll-process__detail {
        font-size: 13px !important; line-height: 1.55 !important; margin: 0 0 12px !important;
        padding-left: 12px !important; border-left: 2px solid rgba(32,37,39,0.1) !important;
    }
    .ll-process .ll-process__visual { display: none !important; }

    /* ── 가격 탭: PC 디자인 재현 — 대칭 패딩 + 균등 폭 ── */
    .ll-pricing .ll-tabs {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow: visible !important;    /* ::after 툴팁 클리핑 방지 */
        margin: 20px auto 20px !important;
        padding: 5px !important;         /* 대칭 5px — hover 없는 모바일에서 18px 상단 불필요 */
        gap: 4px !important;
        box-sizing: border-box !important;
        /* border-radius:999px, background:var(--ll-card) → main.css 상속 유지 */
    }
    .ll-pricing .ll-tabs button {
        flex: 1 1 0% !important;          /* 균등 폭 */
        min-width: 0 !important;
        max-width: none !important;
        font-size: 12px !important;
        min-height: 36px !important;
        padding: 0 8px !important;        /* 6→8px: 텍스트 좌우 여유 */
        white-space: nowrap !important;
        overflow: visible !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;              /* 텍스트 ↔ 배지 간격 */
        line-height: 1 !important;
        font-weight: 600 !important;
    }
    /* 준비중 배지: 버튼 내부 인라인, 소형 최적화 */
    .ll-pricing .ll-tabs button small {
        flex-shrink: 0 !important;
        min-height: 17px !important;
        padding: 0 5px !important;
        font-size: 9px !important;
        line-height: 17px !important;    /* 배지 높이에 맞춰 수직 정렬 */
    }
    /* 스와이프 힌트 제거 */
    .ll-pricing::after { content: none !important; display: none !important; }

    /* ── 가격 카드: 화살표 버튼 슬라이더 ──
     * 래퍼(ll-plan-group-wrap)가 < 버튼 · 캐러셀 · > 버튼을 가로로 배열.
     * 카드 폭 100% → 한 번에 하나만 표시, scroll-snap으로 정렬. */

    /* 래퍼: 비활성 패널 래퍼는 숨기고, 활성 패널 래퍼만 flex 표시
     * — 탭 4개 × 래퍼 각 1개이므로 비활성 3개의 빈 화살표 쌍을 :has()로 차단 */
    .ll-plan-group-wrap {
        display: none !important;
    }
    .ll-plan-group-wrap:has(.ll-plan-group.is-active) {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    /* 화살표 버튼 */
    .ll-plan-arrow {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: var(--ll-card, #f4f4f5) !important;
        border: 1px solid var(--ll-border, #e4e4e7) !important;
        color: var(--ll-text, #18181b) !important;
        cursor: pointer !important;
        transition: opacity 0.15s, background 0.15s !important;
        padding: 0 !important;
    }
    .ll-plan-arrow:disabled {
        opacity: 0.25 !important;
        cursor: not-allowed !important;
    }
    .ll-plan-arrow:not(:disabled):active {
        background: var(--ll-border, #e4e4e7) !important;
    }

    /* 캐러셀: flex:1로 남은 공간 차지, 한 화면에 카드 하나 */
    .ll-plan-group.is-active {
        display: flex !important;
        flex: 1 1 0% !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 4px 0 16px !important;
        width: auto !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }
    .ll-plan-group.is-active::-webkit-scrollbar { display: none !important; }

    /* 카드: 캐러셀 너비 100% = 화면에 하나만 표시 */
    .ll-plan-group.is-active .ll-plan-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-height: 0 !important;
        position: static !important;
        transform: none !important;
        scroll-snap-align: start !important;
    }
    /* 전역 .ll-plan-card: 스와이프 컨텍스트 외 기본값 */
    .ll-plan-card {
        position: static !important;
        transform: none !important;
        min-height: 0 !important;
    }
    .ll-plan-price em { font-size: 40px !important; }

    /* ── FAQ: Contact Us 버튼을 Q&A 항목 아래 중앙으로 이동 ──
     * ll-faq__title을 display:contents로 투명화 → 자식들이 grid의 직접 자식이 됨
     * order로 재배열: title 요소(1) → FAQ items(2) → Contact Us(3) */
    .ll-faq__grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        min-height: 0 !important;
    }
    .ll-faq__title {
        display: contents !important; /* 래퍼 투명화 — 자식들이 flex 아이템이 됨 */
    }
    /* title 자식들: 위쪽 배치 (order 1) */
    .ll-faq__title > * { order: 1 !important; align-self: center !important; text-align: center !important; }
    .ll-faq__title > h2 { text-align: center !important; margin-bottom: 20px !important; }
    .ll-faq__title > .ll-eyebrow { text-align: center !important; }
    /* FAQ 항목: 중간 배치 (order 2) */
    .ll-faq__items { order: 2 !important; width: 100% !important; margin-top: 24px !important; }
    /* Contact Us 버튼: 항목 아래 중앙 (order 3) */
    .ll-nav__cta--faq { order: 3 !important; margin-top: 28px !important; align-self: center !important; }
    /* 다운로드 버튼 */
    .ll-faq__brief-dl {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 16px !important;
        text-align: center !important;
    }
    .ll-faq__items details > summary { font-size: 15px !important; padding: 16px 0 !important; }
    .ll-faq__answer p { font-size: 14px !important; }

    /* ── CTA 배너 모바일: 폰 목업 제거, 텍스트 전면 노출 ── */
    /* padding-top은 상단 섹션 패딩 규칙(60px)에서 통합 관리 */
    .ll-cta-banner { overflow: visible !important; }
    .ll-cta-banner .ll-cta-banner__inner.ll-container {
        position: relative !important;
        display: block !important;             /* grid → block: 폰 컬럼 제거 */
        min-height: 0 !important;
        padding: 44px 28px 44px !important;
        border-radius: 24px !important;
        overflow: visible !important;
    }
    /* 폰 목업 완전 숨김 */
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-kakao-wrap { display: none !important; }

    /* 텍스트 개선 */
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-eyebrow {
        font-size: 10px !important; letter-spacing: 0.12em !important; margin-bottom: 12px !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container h2 {
        font-size: clamp(26px, 7vw, 38px) !important;
        line-height: 1.2 !important; margin-bottom: 16px !important; letter-spacing: 0.02em !important;
        white-space: nowrap !important;
    }
    /* CTA 제목의 줄바꿈 태그 제거 → 한 줄 */
    .ll-cta-banner .ll-cta-banner__inner.ll-container h2 br { display: none !important; }
    /* 본문 텍스트 표시 */
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__copy > span {
        display: block !important;
        font-size: 13px !important; line-height: 1.65 !important; margin-bottom: 24px !important;
        opacity: 0.75 !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__btns {
        display: flex !important; flex-direction: row !important;
        flex-wrap: wrap !important; gap: 10px !important; margin-top: 24px !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__btn {
        flex: 1 1 auto !important; max-width: 200px !important;
        display: inline-flex !important; align-items: center !important; gap: 6px !important;
        height: 48px !important; min-height: 0 !important;
        padding: 0 22px !important; font-size: 14px !important; font-weight: 700 !important;
        border-radius: 999px !important; white-space: nowrap !important;
    }
    /* 포트폴리오 보기 버튼 표시 */
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__link {
        display: inline-flex !important; align-items: center !important;
        height: 48px !important; padding: 0 22px !important; font-size: 14px !important;
        border-radius: 999px !important; white-space: nowrap !important;
        border: 1.5px solid rgba(255,255,255,0.3) !important; color: rgba(255,255,255,0.75) !important;
    }

    /* ── 푸터 ── */
    .ll-footer__top {
        padding: 24px 16px 20px !important;
        /* main.css 9416: align-items:center(column)이 nav를 가운데 배치 → flex-start로 왼쪽 정렬 */
        align-items: flex-start !important;
    }
    /* 메뉴 카테고리: 왼쪽 정렬
     * main.css line 1994: .ll-footer__list { display: grid } 덮어쓰기 필수
     * main.css 9416: .ll-footer__top .ll-footer__list specificity (0,2,0) = 내 규칙과 동일 → mobile.css(나중) 우선 */
    .ll-footer .ll-footer__list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px 20px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }
    .ll-footer .ll-footer__list li { text-align: left !important; }
    /* 이메일 폰트: .ll-footer a 전역 규칙이 font-size를 다르게 설정 → inherit 강제 */
    .ll-footer__biz-row a { font-size: inherit !important; }
    .ll-footer .ll-footer__list li a { font-size: 13px !important; }

    .ll-footer__biz-block { padding: 18px 16px 6px !important; }
    /* biz-row: 자연스러운 줄바꿈 허용 — overflow visible로 이메일 등 잘림 방지 */
    .ll-footer__biz-row {
        display: flex !important; flex-direction: row !important; flex-wrap: wrap !important;
        align-items: baseline !important; gap: 0 5px !important;
        font-size: 10.5px !important; line-height: 1.65 !important; margin-bottom: 5px !important;
        color: rgba(0,0,0,0.52) !important;
        overflow: visible !important;
    }
    .ll-footer__biz-row .ll-footer__sep { display: inline !important; flex-shrink: 0 !important; }
    .ll-footer__biz-row--primary { font-size: 11px !important; color: rgba(0,0,0,0.6) !important; }
    .ll-footer__biz-row--legal {
        flex-wrap: nowrap !important;
        gap: 0 5px !important;
        margin-top: 10px !important;
        font-size: 10px !important;
    }

    /* ── 햄버거: 흰 네모 제거 + 3선 복원 (실측: 컨테이너 bg 흰색, 라인 height 0) ──
     * .ll-hamburger 컨테이너에 정체불명 흰 배경 → 강제 투명화
     * .ll-hamburger__line height가 0으로 계산됨 → flex:none + height 강제 */
    .ll-header .ll-header__pill .ll-menu-toggle .ll-hamburger {
        background: transparent !important;
        width: 24px !important;
        height: 18px !important;
        gap: 5px !important;
    }
    .ll-header .ll-header__pill .ll-menu-toggle .ll-hamburger .ll-hamburger__line {
        flex: none !important;
        height: 2px !important;
        min-height: 2px !important;
        width: 24px !important;
        background: #ffffff !important;  /* 기본: 히어로 다크 배경 → 흰 선 */
    }
    /* 밝은 배경(스크롤 시)에서는 검은 선 */
    .ll-header.is-on-light .ll-header__pill .ll-menu-toggle .ll-hamburger .ll-hamburger__line {
        background: #0c0c0c !important;
    }

    /* ── 푸터 빅로고: footer의 padding-bottom:112px(720px main.css)가 거대 여백 원인 ──
     * 실측: footer pb 112px + biglogo mb 64px = 176px 흰 공간
     * footer pb를 78px로 축소 → 빅로고 아래 pill 공간만 확보 */
    .ll-footer {
        padding-bottom: 78px !important;
    }
    .ll-footer__biglogo {
        display: block !important;
        overflow: hidden !important;
        margin-top: 12px !important;
        margin-bottom: 0 !important;     /* footer pb가 여백 담당 → 중복 제거 */
        padding-bottom: 0 !important;
    }
    .ll-footer__biglogo::before { content: none !important; } /* 텍스트 중복 제거 */
    .ll-footer__biglogo img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    /* ── 하단 플로팅: pill + FAB 가로 나란히 ──
     * 실측 기준: viewport 390 → pill 폭 308px(left10 right72)에
     * [접수중][카운트][제작문의] 3요소를 압축 배치, 우측 72px에 FAB
     * 콘텐츠 합 ≈262px < 가용282px → CTA 밀림 없이 들어감 */
    .ll-renewal-pill {
        left: 10px !important;
        right: 72px !important;        /* FAB 공간: 10px + 52px FAB + 10px 간격 */
        bottom: 14px !important;
        transform: none !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 7px !important;
        min-height: 52px !important;
        padding: 7px 8px 7px 14px !important;
        border-radius: 999px !important;
    }
    .ll-renewal-pill.is-shown { transform: none !important; }

    /* 배지 말풍선 */
    .ll-renewal-pill__badge {
        display: inline-flex !important;
        top: -28px !important;
        font-size: 9px !important;
        padding: 4px 9px !important;
    }

    /* 카피 (프로젝트 접수중) — main.css 3192 flex:1 / 14629 display:none 무력화
     * flex:0 0 auto + max-content로 콘텐츠 폭 고정 (0폭 찌그러짐 방지) */
    .ll-renewal-pill__copy {
        display: flex !important;
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: max-content !important;
    }
    .ll-renewal-pill__copy strong { font-size: 10px !important; white-space: nowrap !important; }

    /* 카운트다운 — main.css width:297 충돌 무력화: max-content로 콘텐츠 폭만 차지
     * → copy 바로 옆에 붙어 불필요한 공백 제거, CTA가 pill 안에 들어감 */
    .ll-renewal-pill__count {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1px !important;
        padding: 0 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: max-content !important;
    }
    .ll-renewal-pill__count-label {
        display: block !important;
        font-size: 6px !important;     /* nums보다 좁게 → count 폭은 nums 기준 */
        white-space: nowrap !important;
        letter-spacing: -0.02em !important;
        text-transform: none !important;
        opacity: 0.6 !important;
    }
    .ll-renewal-pill__count-nums {
        gap: 3px !important;
        align-items: baseline !important;
        min-width: 0 !important;       /* main.css min-width:200px 리셋 */
    }
    .ll-renewal-pill__count-nums strong { font-size: 14px !important; animation: none !important; }
    .ll-renewal-pill__count-nums small { font-size: 7px !important; }

    /* CTA 버튼 — margin-left:auto로 우측 끝, 압축 */
    .ll-renewal-pill__cta {
        height: 32px !important; min-height: 32px !important;
        padding: 0 10px !important; font-size: 10px !important;
        border-radius: 999px !important; white-space: nowrap !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    /* ── 소셜 FAB: pill과 같은 bottom, pill 우측에 나란히 ── */
    .ll-social-fab {
        bottom: 14px !important;
        right: 10px !important;
    }
    .ll-social-fab__main {
        width: 52px !important;
        height: 52px !important;
    }

    /* ── 모바일 메뉴: list가 height:100%+align-content:center로 화면 꽉 채워
     *    형제인 cta-wrap을 화면 밖으로 밀어냄 (실측 y:876 > 844)
     *    → list를 height:auto + 상단 정렬로 바꿔 cta가 바로 아래 따라오게 ── */
    .ll-mobile-menu__list {
        height: auto !important;
        align-content: start !important;
        padding-top: clamp(96px, 16vh, 140px) !important;
        padding-bottom: 24px !important;
    }
    /* 메뉴 글자 약간 축소 → 4개 + 버튼이 화면 안에 여유롭게 */
    .ll-mobile-menu__list .nav-link {
        padding: clamp(16px, 3vh, 24px) 0 !important;
    }
    .ll-mobile-menu__list .nav-link span {
        font-size: clamp(38px, 10.5vw, 64px) !important;
    }
    /* Contact Us 버튼: list 바로 아래 중앙, 화면 안 */
    .ll-mobile-menu__cta-wrap {
        position: relative !important;
        z-index: 3 !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 0 !important;
        padding: 0 clamp(28px, 8vw, 64px) 32px !important;
    }

    /* ── 가격 회사소개서 툴팁: 모바일 기본 표시 ── */
    .ll-pricing .ll-profile-download {
        overflow: visible !important;
        padding-bottom: 40px !important; /* 툴팁 공간 확보 */
    }
    .ll-pricing .ll-profile-download .ll-btn::after,
    .ll-pricing .ll-profile-download .ll-btn::before {
        opacity: 1 !important;
    }
    .ll-pricing .ll-profile-download .ll-btn::after {
        transform: translate(-50%, 0) !important;
    }
    .ll-pricing .ll-profile-download .ll-btn::before {
        transform: translate(-50%, 0) rotate(45deg) !important;
    }
}

/* ════════════════════════════════════════════════════════
   ≤ 480px — 소형 모바일
════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    .ll-container { width: min(100% - 24px, var(--ll-container)) !important; }

    /* 소형 모바일 섹션 패딩 48px 상하 통일 */
    .ll-roadblocks,
    .ll-portfolio, .ll-process, .ll-pricing, .ll-faq, .ll-cta-banner {
        padding-top: 48px !important; padding-bottom: 48px !important;
    }

    .ll-hero-sequence__bottom { padding: 0 16px 20px !important; }
    .ll-hero-sequence__title { font-size: clamp(38px, 14vw, 110px) !important; letter-spacing: -0.058em !important; }

    .ll-roadblocks__intro h2 { font-size: clamp(28px, 9.5vw, 40px) !important; }
    .ll-portfolio h2, .ll-portfolio__head h2 { font-size: clamp(32px, 11.5vw, 48px) !important; }
    .ll-section-title h2, .ll-faq h2, .ll-faq__title h2 { font-size: clamp(26px, 8.5vw, 38px) !important; }
    .ll-process__head h2 { font-size: clamp(24px, 8vw, 34px) !important; }

    .ll-portfolio__rail figure { width: clamp(200px, 78vw, 250px) !important; }

    .ll-process .ll-process__panel-head h3 { font-size: clamp(15px, 5vw, 20px) !important; }
    .ll-process .ll-process__desc, .ll-process .ll-process__detail { font-size: 12.5px !important; }

    /* 탭: 소형에서 패딩·폰트 축소 */
    .ll-pricing .ll-tabs { padding: 4px !important; gap: 3px !important; }
    .ll-pricing .ll-tabs button { padding: 0 5px !important; font-size: 11px !important; min-height: 34px !important; gap: 2px !important; }
    .ll-pricing .ll-tabs button small { font-size: 8px !important; padding: 0 4px !important; min-height: 15px !important; line-height: 15px !important; }

    /* 소형: 카드 폭 100% 유지 (767px 슬라이더 상속, 별도 오버라이드 불필요) */
    .ll-plan-price em { font-size: 36px !important; }

    .ll-faq summary { font-size: 13.5px !important; padding: 14px 0 !important; }

    /* CTA 소형: 패딩 줄임 */
    .ll-cta-banner .ll-cta-banner__inner.ll-container {
        padding: 36px 20px 36px !important; border-radius: 20px !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container h2 {
        font-size: clamp(22px, 6.5vw, 32px) !important;
    }
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__btn,
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__link {
        height: 44px !important; padding: 0 18px !important; font-size: 13px !important;
    }

    .ll-footer__biz-row { font-size: 9.5px !important; }
    .ll-footer__biz-row--primary { font-size: 10px !important; }

    /* 소형 플로팅배너 — pill 우측에 FAB 나란히 (right:64 = 8+48FAB+8) */
    .ll-renewal-pill {
        left: 8px !important;
        right: 64px !important;
        bottom: 12px !important;
        padding: 6px 7px 6px 12px !important;
        min-height: 48px !important;
        gap: 6px !important;
    }
    .ll-renewal-pill__copy strong { font-size: 9.5px !important; }
    .ll-renewal-pill__count-label { font-size: 5.5px !important; }
    .ll-renewal-pill__count-nums strong { font-size: 13px !important; }
    .ll-renewal-pill__count-nums small { font-size: 6.5px !important; }
    .ll-renewal-pill__cta { height: 30px !important; min-height: 30px !important; padding: 0 9px !important; font-size: 9.5px !important; }

    /* 소형 빅로고: footer pb가 여백 담당 */
    .ll-footer { padding-bottom: 72px !important; }

    /* 소형 FAB: pill과 같은 bottom, 우측 정렬 */
    .ll-social-fab { bottom: 12px !important; right: 8px !important; }
    .ll-social-fab__main { width: 48px !important; height: 48px !important; }
}

/* STEP 12-M (2026-06-01) — 요청 범위: 모바일 반응형 전용 보정. PC 확정 레이아웃은 건드리지 않습니다. */
@media (max-width: 767px) {
    /* 푸터 필수정보: 항목 구분을 |로 통일하고, 가능한 한 한 줄로 읽히게 합니다. */
    .ll-footer__biz-block {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .ll-footer__biz-block::-webkit-scrollbar {
        display: none !important;
    }

    .ll-footer__biz-row {
        display: flex !important;
        width: max-content !important;
        max-width: none !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 7px !important;
        white-space: nowrap !important;
        line-height: 1.55 !important;
    }

    .ll-footer__biz-row .ll-footer__sep {
        display: inline-flex !important;
        font-size: 0 !important;
        color: rgba(0, 0, 0, 0.32) !important;
    }

    .ll-footer__biz-row .ll-footer__sep::before {
        content: "|" !important;
        font-size: 10px !important;
    }

    /* 푸터 빅로고 하단 여백: 하단 플로팅 배너가 가리지 않는 선까지만 남깁니다. */
    .ll-footer {
        padding-bottom: 66px !important;
    }

    .ll-footer__biglogo {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* 모바일 메뉴: 열린 상태에서 우측 상단 X를 흰색으로 명확히 노출합니다. */
    .ll-mobile-menu__close {
        position: fixed !important;
        top: 18px !important;
        right: 18px !important;
        z-index: 10005 !important;
        display: grid !important;
        width: 44px !important;
        height: 44px !important;
        place-items: center !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        color: #fff !important;
        font-size: 30px !important;
        font-weight: 300 !important;
        line-height: 1 !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .ll-mobile-menu.is-open .ll-mobile-menu__close {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* PPT 제작 탭 런칭예정 툴팁: 모바일에서는 hover 없이 기본 노출합니다. */
    .ll-pricing .ll-tabs button[data-launching]::after,
    .ll-pricing .ll-tabs button[data-launching]::before {
        opacity: 1 !important;
        pointer-events: none !important;
    }

    .ll-pricing .ll-tabs {
        overflow: visible !important;
    }

    .ll-pricing .ll-tabs button[data-launching]::after {
        transform: translate(-50%, 0) !important;
    }

    .ll-pricing .ll-tabs button[data-launching]::before {
        transform: translate(-50%, 0) rotate(45deg) !important;
    }

    /* 하단 중앙 플로팅 배너: PC 디자인 톤은 유지하고 모바일 폭에 맞게만 압축합니다. */
    .ll-renewal-pill {
        left: 10px !important;
        right: 68px !important;
        bottom: 12px !important;
        min-height: 50px !important;
        padding: 7px 8px 7px 14px !important;
        gap: 7px !important;
        background: rgba(32, 37, 39, 0.96) !important;
        color: #fff !important;
        border-radius: 999px !important;
    }

    .ll-renewal-pill__count-label {
        color: rgba(255, 255, 255, 0.92) !important;
        opacity: 1 !important;
    }

    .ll-renewal-pill__copy strong,
    .ll-renewal-pill__count-nums strong,
    .ll-renewal-pill__count-nums small {
        color: #fff !important;
    }

    .ll-renewal-pill__cta {
        background: #fff !important;
        color: #202527 !important;
    }

    /* CTA 배너 본문: 모바일에서 양쪽 균등한 폭으로 읽히도록 줄폭과 정렬만 조정합니다. */
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-cta-banner__copy > span {
        display: block !important;
        max-width: 31em !important;
        text-wrap: balance !important;
        word-break: keep-all !important;
        text-align: justify !important;
        text-align-last: left !important;
        line-height: 1.72 !important;
    }
}

@media (max-width: 480px) {
    .ll-footer {
        padding-bottom: 60px !important;
    }

    .ll-renewal-pill {
        left: 8px !important;
        right: 62px !important;
        bottom: 10px !important;
        min-height: 46px !important;
        padding: 6px 7px 6px 12px !important;
        gap: 6px !important;
    }

    .ll-renewal-pill__count-label {
        font-size: 5.8px !important;
    }
}

/* STEP 13-M (2026-06-01) — 모바일 헤더/푸터/플로팅 배너 최종 보정. PC 레이아웃에는 영향 없음. */
@media (max-width: 767px) {
    /* 헤더 햄버거 버튼: 정사각형 비율과 상단 여백을 확보합니다. */
    .ll-header {
        padding-top: 10px !important;
    }

    .ll-header > .ll-logo img {
        max-height: 34px !important;
        width: auto !important;
    }

    .ll-header .ll-header__pill {
        padding-top: 0 !important;
        padding-right: 0 !important;
    }

    .ll-header .ll-header__pill .ll-menu-toggle,
    .ll-header__pill .ll-menu-toggle {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        padding: 7px !important;
        aspect-ratio: 1 / 1 !important;
    }

    .ll-header .ll-header__pill .ll-menu-toggle .ll-hamburger {
        width: 22px !important;
        height: 22px !important;
        gap: 4px !important;
    }

    .ll-header .ll-header__pill .ll-menu-toggle .ll-hamburger .ll-hamburger__line {
        width: 22px !important;
    }

    /* 메뉴가 열렸을 때는 별도 X 버튼만 보이고, 헤더의 세 줄은 숨깁니다. */
    body.ll-mobile-menu-open .ll-header .ll-header__pill .ll-menu-toggle .ll-hamburger {
        display: none !important;
    }

    body.ll-mobile-menu-open .ll-header .ll-header__pill .ll-menu-toggle {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    .ll-mobile-menu__close {
        top: 18px !important;
        right: 18px !important;
        width: 38px !important;
        height: 38px !important;
        color: #fff !important;
        font-size: 28px !important;
    }

    /* CTA 배너: 뱃지와 타이틀 사이 여백을 살짝 추가합니다. */
    .ll-cta-banner .ll-cta-banner__inner.ll-container .ll-eyebrow {
        margin-bottom: 12px !important;
    }

    /* 푸터 필수정보: 가로 스크롤 없이 의미 단위로 다음 줄에 이어집니다. */
    .ll-footer__biz-block {
        overflow-x: visible !important;
    }

    .ll-footer__biz-row {
        display: flex !important;
        width: auto !important;
        max-width: 100% !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        row-gap: 5px !important;
        column-gap: 7px !important;
        white-space: normal !important;
        word-break: keep-all !important;
        overflow: visible !important;
    }

    .ll-footer__biz-row > span,
    .ll-footer__biz-row > a {
        flex: 0 1 auto !important;
        max-width: 100% !important;
    }

    .ll-footer__biz-row .ll-footer__sep {
        flex: 0 0 auto !important;
    }

    .ll-footer__biz-row--bank {
        display: inline-flex !important;
        width: auto !important;
        margin-top: 8px !important;
        padding: 7px 10px !important;
        border-radius: 999px !important;
        background: rgba(207, 255, 36, 0.26) !important;
        color: rgba(0, 0, 0, 0.78) !important;
        font-weight: 700 !important;
    }

    .ll-footer__biz-row--bank .ll-footer__sep::before {
        color: rgba(0, 0, 0, 0.32) !important;
    }

    /* 빅로고와 하단 플로팅 배너 사이 여백 축소 */
    .ll-footer {
        padding-bottom: 48px !important;
    }

    .ll-footer__biglogo {
        margin-top: 8px !important;
        margin-bottom: 0 !important;
    }

    /* 플로팅 배너: 좌우 끝 여백과 내부 정렬을 보정합니다. */
    .ll-renewal-pill {
        left: 12px !important;
        right: 68px !important;
        bottom: 10px !important;
        min-height: 50px !important;
        padding: 8px 12px 8px 16px !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .ll-renewal-pill__copy {
        padding-left: 0 !important;
        margin-right: 2px !important;
    }

    .ll-renewal-pill__copy strong {
        font-size: 10.5px !important;
        line-height: 1 !important;
    }

    .ll-renewal-pill__count {
        justify-content: center !important;
        text-align: center !important;
    }

    .ll-renewal-pill__count-label {
        font-size: 6px !important;
        line-height: 1 !important;
    }

    .ll-renewal-pill__count-nums {
        justify-content: center !important;
    }

    .ll-renewal-pill__cta {
        margin-left: auto !important;
        padding: 0 14px !important;
        height: 32px !important;
        min-height: 32px !important;
    }

    .ll-social-fab {
        bottom: 10px !important;
        right: 10px !important;
    }
}

@media (max-width: 480px) {
    .ll-header > .ll-logo img {
        max-height: 32px !important;
    }

    .ll-footer {
        padding-bottom: 44px !important;
    }

    .ll-renewal-pill {
        left: 10px !important;
        right: 62px !important;
        bottom: 9px !important;
        padding: 7px 10px 7px 14px !important;
    }

    .ll-social-fab {
        bottom: 9px !important;
    }
}

/* STEP 13-N (2026-06-01) — Playwright 실측 보정: 햄버거 위치와 모바일 메뉴 X 클릭 차단 문제 해결. */
@media (max-width: 767px) {
    .ll-header {
        padding-top: 14px !important;
    }

    .ll-header > .ll-logo {
        align-self: start !important;
        margin-top: 4px !important;
    }

    .ll-header > .ll-logo img {
        max-height: 36px !important;
    }

    .ll-header .ll-header__pill {
        align-self: start !important;
        margin-top: 8px !important;
    }

    .ll-header .ll-header__pill .ll-menu-toggle,
    .ll-header__pill .ll-menu-toggle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        padding: 7px !important;
        border-radius: 10px !important;
    }

    .ll-header .ll-header__pill .ll-menu-toggle .ll-hamburger {
        width: 20px !important;
        height: 20px !important;
    }

    .ll-header .ll-header__pill .ll-menu-toggle .ll-hamburger .ll-hamburger__line {
        width: 20px !important;
    }

    .ll-mobile-menu {
        z-index: 12000 !important;
    }

    .ll-mobile-menu__close {
        z-index: 12020 !important;
    }

    body.ll-mobile-menu-open .ll-header {
        pointer-events: none !important;
    }

    body.ll-mobile-menu-open .ll-mobile-menu,
    body.ll-mobile-menu-open .ll-mobile-menu__close,
    body.ll-mobile-menu-open .ll-mobile-menu__content,
    body.ll-mobile-menu-open .ll-mobile-menu__overlay {
        pointer-events: auto !important;
    }
}

@media (max-width: 480px) {
    .ll-header > .ll-logo img {
        max-height: 34px !important;
    }
}

/* STEP 13-O (2026-06-01) — Playwright 모바일 재검수 후 남은 시각 오차 보정.
 * 목적: 메뉴 오픈 시 X만 보이게 하고, 푸터 빅로고와 플로팅 배너 사이의 과한 여백을 줄입니다.
 * PC 확정 디자인을 건드리지 않기 위해 모바일 브레이크포인트 안에서만 적용합니다. */
@media (max-width: 767px) {
    /* 모바일·터치 환경에서는 커스텀 마우스 커서가 UI 버튼처럼 보이므로 비활성화합니다. */
    .ll-cursor {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    html,
    body {
        cursor: auto !important;
    }

    /* 메뉴가 열렸을 때는 큰 원형 버튼이 아니라 흰색 X 자체만 남깁니다. */
    .ll-mobile-menu__close {
        top: 22px !important;
        right: 22px !important;
        width: 34px !important;
        height: 34px !important;
        position: fixed !important;
        display: grid !important;
        place-items: center !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #0b0c0c !important;
        box-shadow: none !important;
        color: transparent !important;
        font-size: 0 !important;
        font-weight: 300 !important;
        line-height: 1 !important;
        appearance: none !important;
        -webkit-appearance: none !important;
    }

    .ll-mobile-menu__close::before,
    .ll-mobile-menu__close::after {
        content: "" !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        width: 27px !important;
        height: 3px !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        transform-origin: center !important;
    }

    .ll-mobile-menu__close::before {
        transform: translate(-50%, -50%) rotate(45deg) !important;
    }

    .ll-mobile-menu__close::after {
        transform: translate(-50%, -50%) rotate(-45deg) !important;
    }

    /* 스크롤 후에도 모바일 햄버거는 큰 원형 배경 없이 36px 정사각형 아이콘으로 유지합니다. */
    .ll-header .ll-header__pill,
    .ll-header.is-scrolled .ll-header__pill,
    .ll-header.is-on-light .ll-header__pill,
    .ll-header.is-on-dark .ll-header__pill {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        padding: 0 !important;
        margin-top: 8px !important;
        border: 0 !important;
        border-radius: 10px !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* 푸터 하단 여백은 플로팅 배너가 빅로고를 가리지 않는 선에서만 확보합니다. */
    .ll-footer {
        padding-bottom: 76px !important;
    }

    .ll-footer__biglogo {
        height: auto !important;
        margin-top: 6px !important;
        margin-bottom: 0 !important;
        line-height: 0 !important;
        overflow: visible !important;
    }

    .ll-footer__biglogo img {
        width: 104vw !important;
        max-width: none !important;
        height: auto !important;
        margin-left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* 푸터 필수정보 구분자는 실제 | 문자가 보이도록 숨김 처리된 이전 값을 되돌립니다. */
    .ll-footer__biz-row:not(.ll-footer__biz-row--legal) .ll-footer__sep,
    .ll-footer__biz-row .ll-footer__sep {
        display: inline-flex !important;
        font-size: 11px !important;
        color: rgba(0, 0, 0, 0.34) !important;
        line-height: 1 !important;
    }

    .ll-footer__biz-row:not(.ll-footer__biz-row--legal) .ll-footer__sep::before,
    .ll-footer__biz-row .ll-footer__sep::before {
        content: none !important;
    }

    /* 플로팅 배너 내부 좌우가 답답해 보이지 않도록 텍스트와 버튼의 안전 여백을 확보합니다. */
    .ll-renewal-pill {
        left: 12px !important;
        right: 72px !important;
        bottom: 9px !important;
        min-height: 50px !important;
        padding: 8px 14px 8px 18px !important;
        gap: 8px !important;
    }

    .ll-renewal-pill__copy {
        min-width: 72px !important;
    }

    .ll-renewal-pill__count-label {
        color: rgba(255, 255, 255, 0.82) !important;
    }

    .ll-renewal-pill__cta {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .ll-footer {
        padding-bottom: 74px !important;
    }

    .ll-renewal-pill {
        left: 10px !important;
        right: 64px !important;
        bottom: 8px !important;
        padding: 7px 12px 7px 16px !important;
    }

    .ll-renewal-pill__copy {
        min-width: 70px !important;
    }
}

/* STEP 14-M (2026-06-01) — 모바일에서 새 보강 요소가 기존 compact 규칙에 묻히지 않도록 최종 보정합니다. */
@media (max-width: 767px) {
    /* 플로팅 말풍선은 모바일에서도 읽히도록 살짝 키우고, 꼬리 크기도 함께 맞춥니다. */
    .ll-renewal-pill__badge {
        top: -31px !important;
        padding: 5px 11px !important;
        font-size: 9.8px !important;
        line-height: 1 !important;
    }

    .ll-renewal-pill__badge::after {
        bottom: -7px !important;
        left: 18px !important;
        border-left-width: 7px !important;
        border-right-width: 7px !important;
        border-top-width: 8px !important;
    }

    .ll-renewal-pill__count {
        gap: 4px !important;
    }

    .ll-renewal-pill__count-label {
        margin-bottom: 1px !important;
        color: rgba(255, 255, 255, 0.86) !important;
    }

    /* 프로세스 카드는 모바일에서도 하단 이미지 슬롯을 유지합니다. */
    .ll-process .ll-process__visual {
        display: flex !important;
        min-height: 118px !important;
        height: 118px !important;
        margin: 4px 20px 18px !important;
        border: 1px dashed rgba(32, 37, 39, 0.16) !important;
        border-radius: 18px !important;
        background:
            linear-gradient(135deg, rgba(207, 255, 36, 0.13), rgba(255, 255, 255, 0.7)),
            repeating-linear-gradient(90deg, rgba(32, 37, 39, 0.035) 0 1px, transparent 1px 16px) !important;
    }

    .ll-process .ll-process__visual::before {
        content: "IMAGE AREA" !important;
        position: absolute !important;
        top: 12px !important;
        left: 14px !important;
        color: rgba(32, 37, 39, 0.42) !important;
        font-size: 9px !important;
        font-weight: 800 !important;
        letter-spacing: 0.12em !important;
    }

    .ll-process .ll-process__visual span {
        font-size: 76px !important;
        color: rgba(32, 37, 39, 0.08) !important;
    }

    /* 메뉴명 우측 영문 라벨은 작은 캡션처럼 붙이고, CTA는 더 크게 보이게 합니다. */
    .ll-mobile-menu__list .nav-link small {
        font-size: 12px !important;
    }

    .ll-mobile-menu__cta-wrap {
        padding-bottom: 18px !important;
    }

    .ll-mobile-menu__cta-wrap .ll-nav__cta {
        transform: scale(1.12) !important;
    }

    .ll-mobile-menu__holo {
        padding-bottom: 34px !important;
    }
}

@media (max-width: 480px) {
    .ll-mobile-menu__list .nav-link {
        gap: 10px !important;
    }

    .ll-mobile-menu__list .nav-link small {
        font-size: 10.5px !important;
    }

    .ll-mobile-menu__holo svg {
        width: min(236px, 72vw) !important;
    }
}

/* STEP 15-M (2026-06-01) — STEP 15 공통 보정이 모바일 최종 오버라이드에 묻히지 않도록 정리합니다. */
@media (max-width: 767px) {
    .ll-renewal-pill__badge {
        top: -24px !important;
    }

    .ll-renewal-pill__badge::after {
        bottom: -8px !important;
    }

    .ll-mobile-menu__content {
        display: flex !important;
        flex-direction: column !important;
    }

    .ll-mobile-menu__list .nav-link {
        justify-content: flex-start !important;
        gap: 0.22em !important;
    }

    .ll-mobile-menu__list .nav-link small {
        font-family: var(--ll-font-display) !important;
        font-style: italic !important;
        font-weight: 400 !important;
        font-size: clamp(12px, 3.2vw, 16px) !important;
        letter-spacing: 0 !important;
        color: rgba(248, 248, 241, 0.62) !important;
    }

    .ll-mobile-menu__holo {
        margin-top: auto !important;
        padding-bottom: clamp(38px, 7vh, 72px) !important;
    }

    .ll-mobile-menu__holo svg {
        width: min(300px, 78vw) !important;
    }
}

@media (max-width: 480px) {
    .ll-mobile-menu__list .nav-link small {
        font-size: 12px !important;
    }

    .ll-mobile-menu__holo svg {
        width: min(280px, 78vw) !important;
    }
}

/* STEP 16-M (2026-06-02) — 모바일 히어로 시퀀스가 스크롤 중 충분히 진행되도록 전용 높이를 확보합니다. */
@media (max-width: 960px) {
    .ll-hero-sequence {
        height: 190svh !important;
        min-height: 190svh !important;
    }

    .ll-hero-sequence .sticky,
    .ll-hero-sequence .h-screen {
        height: 100svh !important;
        min-height: 100svh !important;
    }
}

/* STEP 18-M (2026-06-03) — 모바일 푸터 결제 정보는 강조 알약 안에서 한 줄로 읽히게 고정합니다. */
@media (max-width: 767px) {
    .ll-footer__biz-row--bank {
        display: inline-flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        max-width: 100% !important;
        padding: 6px 8px !important;
        gap: 0 4px !important;
        white-space: nowrap !important;
        overflow: visible !important;
        font-size: clamp(8.2px, 2.25vw, 10.5px) !important;
        line-height: 1.2 !important;
    }

    .ll-footer__biz-row--bank > span,
    .ll-footer__biz-row--bank > a,
    .ll-footer__biz-row--bank .ll-footer__sep {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 390px) {
    .ll-footer__biz-row--bank {
        padding-inline: 6px !important;
        gap: 0 3px !important;
        font-size: clamp(7.6px, 2.05vw, 8.6px) !important;
    }
}
