/*
 * 실제 식스샵 루니버스랩 사이트의 화이트 기반 톤을 워드프레스 테마로 재현합니다.
 * 문의폼과 관리자 편의 기능은 워드프레스 구조에 맞춰 별도로 유지합니다.
 */

:root {
    --ll-bg: #ffffff;
    --ll-ink: #202526;
    --ll-muted: #8c9292;
    --ll-card: #f5f5f3;
    --ll-line: rgba(32, 37, 38, 0.12);
    --ll-dark: #202526;
    --ll-lime: #d1f53c;
    --ll-radius: 18px;
    --ll-container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ll-bg);
    color: var(--ll-ink);
    font-family: "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.screen-reader-text,
.ll-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.ll-skip-link:focus {
    z-index: 9999;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    border-radius: 999px;
    background: var(--ll-dark);
    color: #fff;
}

.ll-container {
    width: min(100% - 48px, var(--ll-container));
    margin: 0 auto;
}

/* 리퀴드 글래스 — specular highlight(상단) + blur + saturation */
.ll-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 1px 0 rgba(0, 0, 0, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.04);
    transition: width 500ms cubic-bezier(0.16, 1, 0.3, 1), top 500ms cubic-bezier(0.16, 1, 0.3, 1), border-radius 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms ease, background 500ms ease;
}

.ll-header.is-scrolled {
    top: 24px;
    width: calc(100% - 48px);
    max-width: 1200px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(28px) saturate(1.8);
    -webkit-backdrop-filter: blur(28px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 0 0 0.5px rgba(0, 0, 0, 0.06),
        0 10px 40px rgba(0, 0, 0, 0.08);
}

.ll-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 64px;
    align-items: center;
    padding: 16px 40px;
    gap: 30px;
}

.ll-header.is-scrolled .ll-header__inner {
    padding: 12px 32px;
}

.ll-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.ll-logo img {
    width: auto;
    height: 34px;
    max-width: 178px;
    object-fit: contain;
}

.ll-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.ll-nav__list,
.ll-footer__list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 40px;
}

.ll-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    overflow: hidden;
    color: #111;
    font-size: 0;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
}

.ll-nav a::before,
.ll-nav a::after {
    display: block;
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.ll-nav a::before {
    content: attr(data-label);
    font-size: 16px;
}

.ll-nav a::after {
    position: absolute;
    content: attr(data-hover);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: translateY(125%);
    opacity: 0;
}

.ll-nav a:hover::before {
    transform: translateY(-125%);
    opacity: 0;
}

.ll-nav a:hover::after {
    transform: translateY(0);
    opacity: 1;
}

.ll-nav__cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
}

.ll-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 999px;
    background: #fff;
}

.ll-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 17px;
    height: 2px;
    margin: 4px auto;
    background: var(--ll-ink);
}

.ll-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 180ms ease, opacity 180ms ease;
}

.ll-btn:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.ll-btn--light {
    background: #fff;
    color: var(--ll-dark);
}

.ll-btn--outline-light {
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.ll-btn--dark {
    background: var(--ll-dark);
    color: #fff;
}

.ll-btn--ghost {
    border-color: rgba(32, 37, 38, 0.16);
    color: var(--ll-dark);
}

.ll-eyebrow {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ll-eyebrow--dark {
    color: var(--ll-muted);
}

.ll-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #050505;
    color: #fff;
}

.ll-hero__media,
.ll-hero__media img,
.ll-hero__overlay {
    position: absolute;
    inset: 0;
}

.ll-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 900ms ease, transform 6500ms ease;
}

.ll-hero__media img.is-active {
    opacity: 1;
    transform: scale(1);
}

.ll-hero__overlay {
    background: rgba(0, 0, 0, 0.4);
}

.ll-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
}

.ll-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 112px;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.92;
}

.ll-hero h1 em,
.ll-section-title h2 em,
.ll-portfolio h2 span {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.ll-hero__content > p:not(.ll-eyebrow) {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.ll-hero__actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 34px;
    gap: 12px;
}

.ll-hero__stats {
    display: flex;
    max-width: 520px;
    margin-top: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.ll-hero__stats article {
    flex: 1;
    padding-top: 18px;
}

.ll-hero__stats strong {
    display: block;
    font-size: 26px;
    line-height: 1;
}

.ll-hero__stats span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.ll-hero-bento {
    position: absolute;
    right: 56px;
    bottom: 56px;
    z-index: 3;
    display: grid;
    width: min(420px, calc(100% - 48px));
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
}

.ll-hero-bento article {
    min-height: 116px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.ll-hero-bento__main {
    grid-row: span 2;
}

.ll-hero-bento__wide {
    grid-column: span 2;
    min-height: auto !important;
}

.ll-hero-bento span,
.ll-hero-bento small,
.ll-hero-bento p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.ll-hero-bento strong {
    display: block;
    margin: 8px 0;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.ll-hero-bento__wide div {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    gap: 8px;
}

.ll-hero-bento__wide span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 700;
}

.ll-portfolio,
.ll-pricing,
.ll-faq,
.ll-inquiry {
    background: #fff;
    color: var(--ll-ink);
}

.ll-roadblocks {
    overflow: hidden;
    padding: 116px 0 0;
    background: #f4f3ec;
    color: var(--ll-ink);
}

.ll-roadblocks__intro {
    display: grid;
    justify-items: center;
    text-align: center;
}

.ll-roadblocks__intro h2 {
    max-width: 840px;
    margin: 0;
    font-size: 76px;
    font-weight: 760;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.ll-roadblocks__intro > p:not(.ll-eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    color: #666d6a;
    font-size: 18px;
}

.ll-roadblocks__marquee {
    position: relative;
    display: grid;
    margin: 54px 0 0;
    gap: 10px;
}

.ll-roadblocks__marquee::before,
.ll-roadblocks__marquee::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: min(14vw, 180px);
    pointer-events: none;
}

.ll-roadblocks__marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f4f3ec, rgba(244, 243, 236, 0));
}

.ll-roadblocks__marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f4f3ec, rgba(244, 243, 236, 0));
}

.ll-roadblocks__track {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: ll-roadblock-marquee 46s linear infinite;
}

.ll-roadblocks__track.is-reverse {
    animation-direction: reverse;
    animation-duration: 54s;
}

.ll-roadblocks__track:nth-child(3) {
    animation-duration: 42s;
}

.ll-roadblocks__track span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgba(23, 28, 29, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: #414847;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(23, 28, 29, 0.035);
}

.ll-roadblocks__solutions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 76px;
    border-top: 1px dashed rgba(23, 28, 29, 0.28);
    border-bottom: 1px dashed rgba(23, 28, 29, 0.28);
}

/* ── 카드 컨테이너 */
.ll-rb-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    border-right: 1px dashed rgba(23, 28, 29, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
        #f4f3ec;
    overflow: hidden;
    transition: background 320ms var(--ll-ease), transform 320ms var(--ll-ease);
}

.ll-rb-card:last-child {
    border-right: 0;
}

.ll-rb-card:hover {
    background:
        linear-gradient(180deg, rgba(215, 255, 47, 0.12), rgba(255, 255, 255, 0)),
        #fbfbf5;
}

/* ── 태그 비주얼 영역 (높이 고정, 마퀴 컨테이너) */
.ll-rb-card__visual {
    position: relative;
    height: 176px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    cursor: crosshair;
    border-bottom: 1px dashed rgba(23, 28, 29, 0.14);
}

/* base + reveal 공통 레이아웃 */
.ll-rb-card__tags-base,
.ll-rb-card__tags-reveal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 6px;
}

/* reveal 레이어 — 렌즈 아래에서만 보임 */
.ll-rb-card__tags-reveal {
    position: absolute;
    inset: 0;
    justify-content: center;
    pointer-events: none;
    clip-path: circle(0px at 50% 50%);
    /* JS가 mousemove마다 업데이트 */
}

/* 태그 행 — 마퀴 애니메이션 */
.ll-rb-card__tags-track {
    display: flex;
    gap: 7px;
    width: max-content;
    animation: ll-rb-tags-fwd 22s linear infinite;
    /* CSS mask로 좌우 fade — 배경색 무관 */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
}

.ll-rb-card__tags-track.is-rev {
    animation-name: ll-rb-tags-rev;
}

@keyframes ll-rb-tags-fwd {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes ll-rb-tags-rev {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* 상단 질문 마퀴 트랙 — 로드블록 섹션 헤더 슬라이드 */
@keyframes ll-roadblock-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* base 태그 — 흐릿한 버전 */
.ll-rb-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(23, 28, 29, 0.08);
    font-size: 11px;
    font-weight: 500;
    color: #9a9f9d;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* reveal 태그 — 렌즈 아래 밝은 버전 */
.ll-rb-tag--lit {
    background: #ffffff;
    border-color: rgba(23, 28, 29, 0.13);
    color: var(--ll-dark);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}

/* 돋보기 렌즈 — 마우스 위치로 JS가 이동 */
.ll-rb-card__lens {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
    transition: opacity 180ms ease;
}

.ll-rb-card__visual.is-hover .ll-rb-card__lens {
    opacity: 1;
}

/* ── 카드 본문 */
.ll-rb-card__body {
    padding: 26px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ── 카드 아이콘 — 로디콘 스타일 인라인 SVG 애니메이션 */
.ll-rb-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: var(--ll-ink);
    flex-shrink: 0;
}

.ll-rb-icon-svg {
    width: 52px;
    height: 52px;
    overflow: visible;
    display: block;
}

/* CLARITY — 광선 펄스: 모였다 펼쳐지며 반짝임 */
.ll-rb-icon__rays {
    animation: ll-icon-rays-pulse 2.6s ease-in-out infinite;
    transform-origin: 26px 22px;
    transform-box: fill-box;
}

@keyframes ll-icon-rays-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.78); }
}

/* SYSTEM — 레이어 계층별 순차 부상 */
.ll-rb-icon__layer1,
.ll-rb-icon__layer2,
.ll-rb-icon__layer3 {
    transform-box: fill-box;
    transform-origin: 50% 50%;
}

.ll-rb-icon__layer1 { animation: ll-icon-stack-lift 2.8s ease-in-out infinite 0s; }
.ll-rb-icon__layer2 { animation: ll-icon-stack-lift 2.8s ease-in-out infinite 0.18s; }
.ll-rb-icon__layer3 { animation: ll-icon-stack-lift 2.8s ease-in-out infinite 0.36s; }

@keyframes ll-icon-stack-lift {
    0%, 60%, 100% { transform: translateY(0); }
    30%           { transform: translateY(-6px); }
}

/* CONVERSION — 막대 높이 성장 (아래 고정, 위로 늘어남) */
.ll-rb-icon__bar1,
.ll-rb-icon__bar2,
.ll-rb-icon__bar3 {
    transform-box: fill-box;
    transform-origin: 50% 100%;
}

.ll-rb-icon__bar1 { animation: ll-icon-bar-grow 2.4s ease-in-out infinite 0s; }
.ll-rb-icon__bar2 { animation: ll-icon-bar-grow 2.4s ease-in-out infinite 0.22s; }
.ll-rb-icon__bar3 { animation: ll-icon-bar-grow 2.4s ease-in-out infinite 0.44s; }

@keyframes ll-icon-bar-grow {
    0%, 100% { transform: scaleY(0.62); }
    50%      { transform: scaleY(1); }
}

/* OPERATION — 순환 화살표 연속 회전 */
.ll-rb-icon-svg--cycle {
    animation: ll-icon-cycle-spin 5s linear infinite;
    transform-origin: 50% 50%;
    transform-box: border-box;
}

@keyframes ll-icon-cycle-spin {
    to { transform: rotate(360deg); }
}

.ll-rb-card__eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: #7a817f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ll-rb-card__body h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 740;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.ll-rb-card__body p {
    margin: 14px 0 0;
    color: #626967;
    font-size: 14px;
    line-height: 1.7;
}

/* 구형 셀렉터 — 새 구조에서는 무효화 */
.ll-roadblocks__solutions article::before {
    display: none;
}

.ll-roadblocks__solutions span,
.ll-roadblocks__solutions h3,
.ll-roadblocks__solutions p {
    /* 새 .ll-rb-card__body 안의 요소가 위 셀렉터에 매칭되지 않도록 초기화 */
    all: unset;
}

.ll-portfolio {
    overflow: hidden;
    padding: 96px 0;
}

.ll-portfolio__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
}

.ll-portfolio h2,
.ll-section-title h2,
.ll-faq h2,
.ll-inquiry h2 {
    margin: 0;
    font-size: 78px;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.ll-portfolio__head p:not(.ll-eyebrow),
.ll-section-title span,
.ll-inquiry__copy span {
    display: block;
    max-width: 580px;
    margin-top: 18px;
    color: var(--ll-muted);
    font-size: 17px;
}

.ll-estimate-card {
    margin-top: 28px;
    padding: 22px;
    border-radius: 24px;
    background: var(--ll-dark);
    color: #fff;
}

.ll-estimate-card > div {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.ll-estimate-card span {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ll-estimate-card strong {
    font-size: 30px;
    line-height: 1;
    white-space: nowrap;
}

.ll-estimate-card p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.ll-estimate-card ul {
    display: grid;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.ll-estimate-card li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.ll-portfolio__buttons {
    display: flex;
    gap: 10px;
}

.ll-portfolio__rail {
    display: flex;
    width: max-content;
    margin-top: 58px;
    gap: 18px;
    animation: ll-marquee 36s linear infinite;
}

.ll-portfolio__rail figure {
    width: min(38vw, 420px);
    min-width: 300px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--ll-radius);
    background: var(--ll-card);
    aspect-ratio: 4 / 5;
}

.ll-portfolio__rail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes ll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ll-pricing {
    padding: 86px 0 96px;
}

.ll-section-title {
    text-align: center;
}

.ll-section-title p {
    margin: 0 0 14px;
    color: var(--ll-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ll-section-title span {
    margin-right: auto;
    margin-left: auto;
}

.ll-tabs {
    display: flex;
    width: fit-content;
    margin: 44px auto 30px;
    padding: 6px;
    border-radius: 999px;
    background: var(--ll-card);
    gap: 4px;
}

.ll-tabs button {
    min-height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ll-muted);
    cursor: pointer;
    font-weight: 600;
}

.ll-tabs button.is-active {
    background: var(--ll-dark);
    color: #fff;
}

.ll-plan-group {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ll-plan-group.is-active {
    display: grid;
}

.ll-profile-download {
    display: grid;
    max-width: 520px;
    margin: 34px auto 0;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.ll-profile-download p {
    margin: 0;
    color: var(--ll-muted);
    font-size: 14px;
}

/* ── 플랜 카드 — flex column 구조로 버튼이 하단에 자연스럽게 위치 */
.ll-plan-card {
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 28px;
    border-radius: 32px;
    background: var(--ll-card);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05), 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.ll-plan-card:hover {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.07), 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.ll-plan-card.is-popular {
    background: #23262b;
    color: #fff;
    box-shadow: 0 4px 0 rgba(35, 38, 43, 0.35), 0 20px 56px rgba(35, 38, 43, 0.18);
}

.ll-plan-card.is-popular:hover {
    box-shadow: 0 6px 0 rgba(35, 38, 43, 0.45), 0 28px 72px rgba(35, 38, 43, 0.28);
}

/* ── 상단 행: 플랜명 라벨 + Popular 배지 */
.ll-plan-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

/* 플랜명 pill — 화살표 아이콘 + 이름 */
.ll-plan-card__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.ll-plan-card.is-popular .ll-plan-card__label {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* 화살표 — 작은 다크 서클 */
.ll-plan-card__label-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ll-dark);
    color: #fff;
    flex-shrink: 0;
}

.ll-plan-card.is-popular .ll-plan-card__label-arrow {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Popular 배지 — 통통 부유 애니메이션 */
.ll-plan-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f5f5f3;
    color: #23262b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    animation: ll-badge-float 2.4s ease-in-out infinite;
}

@keyframes ll-badge-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* ── 가격: 큰 이탤릭 세리프 숫자 + 작은 /월 */
.ll-plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.ll-plan-price em {
    font-family: "Instrument Serif", Georgia, serif;
    font-style: italic;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

.ll-plan-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--ll-muted);
}

.ll-plan-card.is-popular .ll-plan-price span {
    color: rgba(255, 255, 255, 0.45);
}

/* ── 설명 */
.ll-plan-card > p {
    min-height: 52px;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ll-muted);
}

.ll-plan-card.is-popular > p {
    color: rgba(255, 255, 255, 0.55);
}

/* ── 기능 목록 — flex-grow로 버튼을 하단으로 밀기 */
.ll-plan-card ul {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.ll-plan-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    font-size: 14px;
    font-weight: 500;
}

.ll-plan-card.is-popular li {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
}

/* 체크 아이콘 — 다크 서클 */
.ll-plan-card__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ll-dark);
    color: #fff;
    flex-shrink: 0;
}

.ll-plan-card.is-popular .ll-plan-card__check {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ── CTA 버튼 — flex item, 카드 하단 자동 배치 */
.ll-plan-card button {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--ll-dark);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: opacity 180ms ease, transform 180ms ease;
}

.ll-plan-card button:hover {
    opacity: 0.82;
    transform: scale(0.98);
}

.ll-plan-card.is-popular button {
    background: #fff;
    color: var(--ll-dark);
}

.ll-plan-card.is-popular button:hover {
    opacity: 0.88;
}

.ll-faq {
    padding: 96px 0;
}

.ll-faq__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
}

.ll-faq__title {
    position: sticky;
    top: 130px;
    align-self: start;
}

.ll-faq__title .ll-btn {
    margin-top: 28px;
}

.ll-faq__items {
    display: grid;
    gap: 12px;
}

.ll-faq details {
    border-radius: var(--ll-radius);
    background: var(--ll-card);
}

.ll-faq summary {
    cursor: pointer;
    padding: 22px 24px;
    font-size: 18px;
    font-weight: 700;
}

.ll-faq details p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--ll-muted);
}

.ll-inquiry {
    padding: 96px 0;
}

.ll-inquiry__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 38px;
    align-items: start;
}

.ll-inquiry__copy {
    position: sticky;
    top: 130px;
}

.ll-inquiry__copy > p {
    margin: 0 0 14px;
    color: var(--ll-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.ll-inquiry__launch {
    display: grid;
    width: min(100%, 420px);
    margin-top: 34px;
    padding: 24px;
    border: 0;
    border-radius: 26px;
    background: var(--ll-dark);
    color: #fff;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 24px 70px rgba(32, 37, 38, 0.16);
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms ease;
    gap: 10px;
}

.ll-inquiry__launch:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 90px rgba(32, 37, 38, 0.22);
}

.ll-inquiry__launch span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ll-inquiry__launch strong {
    font-size: 26px;
    letter-spacing: -0.04em;
}

.ll-inquiry-preview {
    min-height: 360px;
    align-self: stretch;
    padding: 32px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 20%, rgba(209, 245, 60, 0.22), transparent 32%),
        var(--ll-card);
}

.ll-inquiry-preview > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 999px;
    background: var(--ll-dark);
    color: #fff;
    font-weight: 900;
}

.ll-inquiry-preview h3 {
    max-width: 420px;
    margin: 56px 0 14px;
    font-size: 46px;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.ll-inquiry-preview p {
    max-width: 420px;
    margin: 0;
    color: var(--ll-muted);
}

.ll-inquiry-modal {
    position: fixed;
    z-index: 1300;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 34px;
    pointer-events: none;
    visibility: hidden;
}

.ll-inquiry-modal.is-open {
    pointer-events: auto;
    visibility: visible;
}

.ll-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(10, 12, 12, 0.48);
    backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity 260ms ease;
}

.ll-inquiry-modal.is-open .ll-modal-backdrop {
    opacity: 1;
}

.ll-form-panel {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 1120px);
    max-height: min(86vh, 920px);
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 34px;
    background: rgba(245, 245, 243, 0.94);
    box-shadow: 0 40px 140px rgba(0, 0, 0, 0.28);
    transform: translateY(28px) scale(0.97);
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
    gap: 18px;
}

.ll-inquiry-modal.is-open .ll-form-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.ll-modal-close {
    position: sticky;
    z-index: 2;
    top: 0;
    justify-self: end;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--ll-dark);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.ll-modal-head {
    margin-top: -42px;
}

.ll-modal-head p {
    margin: 0 0 10px;
    color: var(--ll-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ll-modal-head h2 {
    margin: 0;
    font-size: 68px;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

body.ll-modal-open {
    overflow: hidden;
}

.ll-form {
    display: grid;
    gap: 16px;
}

.ll-step-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.ll-step-nav button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--ll-muted);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.ll-step-nav button.is-active,
.ll-step-nav button.is-done {
    background: var(--ll-dark);
    color: #fff;
}

.ll-form-step {
    display: none;
    gap: 16px;
}

.ll-form-step.is-active {
    display: grid;
}

.ll-step-head span {
    color: var(--ll-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ll-step-head h3 {
    margin: 6px 0 4px;
    color: var(--ll-ink);
    font-size: 26px;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.ll-service-select {
    display: grid;
    gap: 12px;
}

.ll-service-option {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.ll-service-option > label {
    display: flex;
    align-items: center;
    padding: 18px;
    cursor: pointer;
    gap: 14px;
}

.ll-service-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--ll-dark);
}

.ll-service-option b {
    display: block;
    color: var(--ll-ink);
    font-size: 17px;
}

.ll-service-option small {
    display: block;
    color: var(--ll-muted);
    font-size: 13px;
}

.ll-service-option.is-selected {
    outline: 2px solid var(--ll-dark);
}

.ll-option-list {
    display: none;
    padding: 0 18px 18px 52px;
    gap: 8px;
}

.ll-service-option.is-selected .ll-option-list {
    display: grid;
}

.ll-option-list label {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--ll-line);
    color: var(--ll-ink);
    font-weight: 500;
    gap: 12px;
}

.ll-option-list label input {
    width: 18px;
    min-width: 18px;
}

.ll-option-list label span {
    flex: 1;
}

.ll-option-list label strong {
    white-space: nowrap;
}

.ll-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
}

.ll-confirm-box {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
}

.ll-confirm-box dl {
    display: grid;
    margin: 0;
    gap: 0;
}

.ll-confirm-box dl div {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--ll-line);
    gap: 18px;
}

.ll-confirm-box dt {
    color: var(--ll-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ll-confirm-box dd {
    margin: 0;
    text-align: right;
    font-weight: 700;
}

.ll-confirm-box p {
    margin: 16px 0 0;
    color: var(--ll-muted);
    font-size: 13px;
}

.ll-dynamic-questions {
    display: grid;
    gap: 12px;
}

.ll-dynamic-questions fieldset {
    display: none;
    margin: 0;
    padding: 18px;
    border: 0;
    border-radius: 18px;
    background: #fff;
}

.ll-dynamic-questions fieldset.is-active {
    display: grid;
    gap: 14px;
}

.ll-dynamic-questions legend {
    margin-bottom: 10px;
    color: var(--ll-ink);
    font-size: 15px;
    font-weight: 800;
}

.ll-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ll-radio-row label {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--ll-card);
    cursor: pointer;
    gap: 7px;
}

.ll-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ll-form label {
    display: grid;
    color: var(--ll-ink);
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
}

.ll-form input,
.ll-form select,
.ll-form textarea {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 14px;
    background: #fff;
    color: var(--ll-ink);
    padding: 14px 15px;
    outline: none;
}

.ll-form textarea {
    resize: vertical;
}

.ll-form input:focus,
.ll-form select:focus,
.ll-form textarea:focus {
    border-color: rgba(32, 37, 38, 0.28);
    box-shadow: 0 0 0 4px rgba(32, 37, 38, 0.06);
}

.ll-form small {
    color: var(--ll-muted);
    font-size: 12px;
    font-weight: 400;
}

.ll-honeypot {
    position: absolute;
    left: -9999px;
}

.ll-form-alert {
    margin-bottom: 16px;
    padding: 13px 14px;
    border-radius: 14px;
    background: #fff;
    color: var(--ll-ink);
    font-size: 14px;
}

.ll-form-alert--success {
    background: #edf9bf;
}

/* 리퀴드 글래스 다크 — 어두운 배경 위에 frosted glass */
/* ── 하단 플로팅 배너 — 프라이싱 popular 카드 톤앤매너 통일 (#23262b 다크) */
.ll-renewal-pill {
    position: fixed;
    z-index: 950;
    right: auto;
    bottom: 24px;
    left: 50%;
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 10px 12px 10px 22px;
    border-radius: 999px;
    background: #23262b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 0 rgba(35, 38, 43, 0.5),
        0 20px 60px rgba(35, 38, 43, 0.35);
    color: #fff;
    transform: translateX(-50%);
    transition: none;
    gap: 12px;
}

@keyframes ll-pill-float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-7px); }
}

/* 좌측 카피 */
.ll-renewal-pill__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* "5 slots available" — 프로젝트 접수중 텍스트 상단 말풍선 툴팁 */
.ll-renewal-pill__badge {
    position: absolute;
    top: -40px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--ll-lime);
    color: #111;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
    animation: ll-badge-bounce 1.4s ease-in-out infinite;
}

/* 말풍선 꼬리 */
.ll-renewal-pill__badge::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--ll-lime);
}

@keyframes ll-badge-bounce {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

.ll-renewal-pill__copy strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    white-space: nowrap;
}

/* 중앙 카운트다운 — 레이블 + 숫자 수직 배치, 콘텐츠 너비에 맞게 */
.ll-renewal-pill__count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    color: #ffffff;
    padding: 0 6px;
}

/* 상단 작은 레이블 */
.ll-renewal-pill__count-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* 숫자 행 */
.ll-renewal-pill__count-nums {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ll-renewal-pill__count-nums > span {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.ll-renewal-pill__count-nums strong {
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    animation: ll-count-pulse 1.6s ease-in-out infinite;
}

.ll-renewal-pill__count-nums small {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.ll-renewal-pill__cta {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--ll-lime);
    color: #111;
    cursor: pointer;
    font-weight: 900;
}

.ll-social-fab {
    position: fixed;
    z-index: 960;
    right: 24px;
    bottom: 104px;
}

.ll-social-fab__main,
.ll-social-fab__items a,
.ll-social-fab__items button {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--ll-dark);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.ll-social-fab__main {
    background: var(--ll-lime);
    color: #111;
    font-size: 26px;
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-social-fab.is-open .ll-social-fab__main {
    transform: rotate(45deg);
}

.ll-social-fab__items {
    position: absolute;
    right: 0;
    bottom: 66px;
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.ll-social-fab__items a,
.ll-social-fab__items button {
    opacity: 0;
    transform: translateY(14px) scale(0.86);
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease;
}

.ll-social-fab.is-open .ll-social-fab__items {
    pointer-events: auto;
}

.ll-social-fab.is-open .ll-social-fab__items a,
.ll-social-fab.is-open .ll-social-fab__items button {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(2) {
    transition-delay: 45ms;
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(3) {
    transition-delay: 90ms;
}

@keyframes ll-tooltip-bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes ll-count-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.ll-footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 28px;
    background: #fff;
    color: var(--ll-ink);
}

.ll-footer::after {
    content: "LUNIVERSE";
    display: block;
    margin-top: 46px;
    color: #f3f3f1;
    font-size: 190px;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.78;
    text-align: center;
}

.ll-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 42px;
}

.ll-footer__logo {
    display: inline-block;
    max-width: 420px;
    font-size: 70px;
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.92;
}

.ll-footer p,
.ll-footer a {
    color: var(--ll-muted);
    font-size: 14px;
}

.ll-footer a:hover {
    color: var(--ll-ink);
}

.ll-footer h2 {
    margin: 0 0 16px;
    color: var(--ll-ink);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ll-footer__list,
.ll-footer__contact {
    display: grid;
    align-items: start;
    gap: 10px;
}

.ll-footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid var(--ll-line);
    gap: 24px;
}

.ll-footer__bottom div {
    display: flex;
    gap: 16px;
}

.ll-page {
    min-height: 70vh;
    padding: 140px 0 90px;
}

.ll-page__content {
    max-width: 920px;
}

.ll-post-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--ll-line);
}

.ll-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ll-portfolio-card a {
    display: block;
    padding: 14px;
    border-radius: 20px;
    background: var(--ll-card);
}

.ll-portfolio-card__image {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4 / 5;
}

.ll-portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ll-portfolio-card h2,
.ll-portfolio-card h3 {
    margin: 14px 0 6px;
    font-size: 20px;
}

.ll-portfolio-single__image {
    margin: 32px 0;
    overflow: hidden;
    border-radius: 20px;
}

@media (max-width: 980px) {
    .ll-nav__list {
        display: none;
    }

    .ll-nav {
        justify-self: end;
    }

    .ll-portfolio__head,
    .ll-plan-group,
    .ll-faq__grid,
    .ll-inquiry__grid,
    .ll-footer__grid,
    .ll-roadblocks__solutions {
        grid-template-columns: 1fr;
    }

    .ll-roadblocks__solutions article {
        min-height: 300px;
        border-right: 0;
        border-bottom: 1px dashed rgba(23, 28, 29, 0.28);
    }

    .ll-roadblocks__solutions article::before {
        margin-bottom: 54px;
    }

    .ll-faq__title,
    .ll-inquiry__copy {
        position: static;
    }

    .ll-inquiry-preview {
        min-height: 260px;
    }
}

@media (max-width: 720px) {
    .ll-container {
        width: min(100% - 36px, var(--ll-container));
    }

    .ll-header {
        top: 0;
    }

    .ll-header.is-scrolled {
        top: 16px;
        width: calc(100% - 32px);
    }

    .ll-header__inner,
    .ll-header.is-scrolled .ll-header__inner {
        padding: 12px 18px;
    }

    .ll-menu-toggle {
        display: block;
    }

    .ll-nav {
        position: absolute;
        top: 68px;
        right: 16px;
        left: 16px;
        display: none;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    }

    .ll-nav.is-open {
        display: grid;
    }

    .ll-nav__list {
        display: grid;
        gap: 12px;
    }

    .ll-nav__cta,
    .ll-btn,
    .ll-form .ll-btn {
        width: 100%;
    }

    .ll-hero__content {
        min-height: 820px;
        padding-top: 120px;
    }

    .ll-hero h1 {
        font-size: 58px;
    }

    .ll-hero__stats {
        margin-top: 44px;
    }

    .ll-hero-bento {
        right: 18px;
        bottom: 24px;
        left: 18px;
        width: auto;
    }

    .ll-portfolio,
    .ll-pricing,
    .ll-faq,
    .ll-inquiry,
    .ll-roadblocks {
        padding: 68px 0;
    }

    .ll-roadblocks {
        padding-bottom: 0;
    }

    .ll-roadblocks__intro h2 {
        font-size: 48px;
    }

    .ll-roadblocks__intro > p:not(.ll-eyebrow) {
        font-size: 16px;
    }

    .ll-roadblocks__marquee {
        margin-top: 36px;
    }

    .ll-roadblocks__solutions {
        margin-top: 50px;
    }

    .ll-portfolio__buttons,
    .ll-form__row,
    .ll-footer__bottom,
    .ll-footer__bottom div {
        display: grid;
    }

    .ll-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .ll-plan-card {
        min-height: 490px;
    }

    .ll-inquiry-modal {
        align-items: end;
        padding: 0;
    }

    .ll-form-panel {
        width: 100%;
        max-height: 88vh;
        border-radius: 28px 28px 0 0;
        padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
    }

    .ll-modal-head {
        margin-top: -42px;
    }

    .ll-renewal-pill {
        right: 16px;
        bottom: 14px;
        left: 16px;
        display: grid;
        grid-template-columns: 1fr auto;
        min-height: 72px;
        padding: 11px 11px 11px 18px;
        transform: none;
        gap: 10px;
    }

    .ll-renewal-pill:hover {
        transform: translateY(-3px);
    }

    .ll-renewal-pill__copy {
        min-width: 0;
    }

    .ll-renewal-pill__copy em {
        bottom: calc(100% + 7px);
    }

    .ll-renewal-pill__count {
        min-width: 0;
        height: auto;
    }

    .ll-renewal-pill__cta {
        grid-column: 1 / -1;
        width: 100%;
    }

    .ll-social-fab {
        right: 18px;
        bottom: 142px;
    }
}

/*
 * GSAP ScrollTrigger 기반 히어로 이미지 시퀀스.
 * Tailwind 클래스가 빌드되지 않는 환경에서도 동일하게 동작하도록 CSS fallback을 둡니다.
 */
.ll-hero-sequence {
    position: relative;
    height: 300vh !important;
    min-height: 300vh !important;
    overflow: visible;
    background: #000 !important;
    color: #fff;
}

.ll-hero-sequence .sticky {
    position: sticky;
}

.ll-hero-sequence .top-0 {
    top: 0;
}

.ll-hero-sequence .h-screen {
    height: 100vh;
}

.ll-hero-sequence .w-full {
    width: 100%;
}

.ll-hero-sequence .h-full {
    height: 100%;
}

.ll-hero-sequence .overflow-hidden {
    overflow: hidden;
}

#hero-canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}

.ll-hero-sequence .absolute {
    position: absolute;
}

.ll-hero-sequence .inset-0 {
    inset: 0;
}

.ll-hero-sequence .pointer-events-none {
    pointer-events: none;
}

.ll-hero-sequence .flex {
    display: flex;
}

.ll-hero-sequence .items-center {
    align-items: center;
}

.ll-hero-sequence .justify-center {
    justify-content: center;
}

.ll-hero-sequence .text-center {
    text-align: center;
}

.ll-hero-sequence .text-white {
    color: #fff;
}

.ll-hero-sequence .px-6 {
    padding-right: 24px;
    padding-left: 24px;
}

.ll-hero-sequence__title {
    max-width: 980px;
    margin: 0;
    color: #fff;
    font-size: 108px;
    font-weight: 780;
    line-height: 0.94;
    letter-spacing: 0;
    text-wrap: balance;
}

@media (max-width: 720px) {
    .ll-hero-sequence__title {
        font-size: 58px;
    }
}

/*
 * 우측 하단 플로팅 메뉴 리디자인.
 * 중앙 하단 CTA 배너와 같은 수평 중심선에 맞추고, 레퍼런스처럼 blur가 풀리는 라벨형 액션으로 펼칩니다.
 */
.ll-social-fab {
    right: 32px;
    bottom: 36px;
    z-index: 970;
}

.ll-social-fab__main {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.6);
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), background 220ms ease, box-shadow 220ms ease;
}

.ll-social-fab__main:hover {
    background: rgba(17, 17, 17, 0.82);
}

.ll-social-fab.is-open .ll-social-fab__main {
    transform: rotate(45deg);
}

.ll-social-fab__items {
    right: 0;
    bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    visibility: hidden;
    pointer-events: none;
}

.ll-social-fab__items a,
.ll-social-fab__items button {
    display: inline-flex;
    width: auto;
    height: 38px;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 13px 0 10px;
    border: 0;
    border-radius: 12px;
    background: rgba(17, 17, 17, 0.6);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    opacity: 0;
    filter: blur(10px);
    transform: translate(12px, 12px);
    transition:
        opacity 280ms ease,
        filter 420ms ease,
        transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
        background 220ms ease;
}

.ll-social-fab__items a:hover,
.ll-social-fab__items button:hover {
    background: rgba(17, 17, 17, 0.82);
}

.ll-social-fab__items span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.ll-social-fab.is-open .ll-social-fab__items {
    visibility: visible;
    pointer-events: auto;
}

.ll-social-fab.is-open .ll-social-fab__items a,
.ll-social-fab.is-open .ll-social-fab__items button {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(1) {
    transition-delay: 80ms;
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(2) {
    transition-delay: 130ms;
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(3) {
    transition-delay: 180ms;
}

@media (max-width: 720px) {
    .ll-social-fab {
        right: 18px;
        bottom: 96px;
    }

    .ll-social-fab__items {
        bottom: 54px;
    }
}

/*
 * 2026-05-26 UX 보정 패치.
 * 벤토형 둥근 카드, 섹션/모달 동시 문의폼, PPT 런칭예정 툴팁, 세분화 카운트다운을 정리합니다.
 */
.ll-hero-bento article,
.ll-roadblocks__solutions article,
.ll-plan-card,
.ll-faq details,
.ll-inquiry-preview,
.ll-service-option,
.ll-dynamic-questions fieldset,
.ll-confirm-box,
.ll-form-panel,
.ll-estimate-card,
.ll-estimator-note {
    border-radius: 28px;
}

.ll-hero-bento__wide span,
.ll-roadblocks__track span,
.ll-tabs,
.ll-tabs button,
.ll-step-nav button,
.ll-form input,
.ll-form select,
.ll-form textarea,
.ll-radio-row label,
.ll-form-alert {
    border-radius: 999px;
}

.ll-form textarea {
    border-radius: 22px;
}

.ll-roadblocks__solutions article::before,
.ll-inquiry-preview > span,
.ll-plan-card b {
    border-radius: 14px;
}

button.ll-nav__cta {
    border: 0;
    cursor: pointer;
}

.ll-tabs button[data-launching] {
    position: relative;
}

.ll-tabs button[data-launching]::after {
    content: attr(data-launching);
    position: absolute;
    bottom: calc(100% + 9px);
    left: 50%;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--ll-lime);
    color: #202527;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.ll-tabs button[data-launching]:hover::after,
.ll-tabs button[data-launching]:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.ll-inquiry__grid {
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
}

.ll-inquiry-preview--form {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ll-form-panel--inline {
    width: 100%;
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: none;
    border: 1px solid #e5e5df;
    background: #f5f5f2;
    box-shadow: none;
}

.ll-form-panel--inline .ll-estimator-layout {
    grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
    min-height: 0;
}

.ll-form-panel--inline .ll-estimator-side {
    border-radius: 28px 0 0 28px;
}

.ll-form-panel--inline .ll-estimator-workspace {
    max-height: none;
    overflow: visible;
}

.ll-form-panel--inline .ll-modal-head h2 {
    font-size: 52px;
}

.ll-inquiry-modal {
    align-items: center;
    overflow: auto;
    padding: 28px;
}

.ll-inquiry-modal .ll-form-panel {
    max-height: none;
    overflow: visible;
}

.ll-inquiry-modal .ll-estimator-layout {
    max-height: min(88vh, 880px);
    overflow: hidden;
}

.ll-inquiry-modal .ll-estimator-side,
.ll-inquiry-modal .ll-estimator-workspace {
    min-height: 0;
    overflow: auto;
}

.ll-inquiry-modal .ll-estimator-workspace {
    padding-bottom: 44px;
}

.ll-service-select {
    align-items: start;
}

.ll-service-option,
.ll-option-list {
    min-width: 0;
}

.ll-renewal-pill {
    min-width: min(860px, calc(100vw - 48px));
}

/* 구형 grid 레이아웃 오버라이드 — 새 구조(flex-column)와 충돌하므로 제거 후 새 셀렉터로 대체 */
.ll-renewal-pill__count-nums {
    min-width: 200px;
    gap: 12px;
}

.ll-renewal-pill__count-nums > span {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    gap: 3px;
}

.ll-renewal-pill__count-nums strong {
    font-size: 18px;
    line-height: 1;
}

.ll-renewal-pill__count-nums small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .ll-inquiry__grid,
    .ll-form-panel--inline .ll-estimator-layout {
        grid-template-columns: 1fr;
    }

    .ll-form-panel--inline .ll-estimator-side {
        border-radius: 28px 28px 0 0;
    }

    .ll-inquiry-modal .ll-estimator-layout {
        grid-template-columns: 1fr;
        max-height: 88vh;
    }
}

@media (max-width: 720px) {
    .ll-hero-bento article,
    .ll-roadblocks__solutions article,
    .ll-faq details,
    .ll-inquiry-preview,
    .ll-service-option,
    .ll-form-panel,
    .ll-estimate-card {
        border-radius: 22px;
    }

    /* 모바일 카드: 둥글기 유지, 가격 크기 축소 */
    .ll-plan-card {
        border-radius: 24px;
        padding: 22px;
    }

    .ll-plan-price em {
        font-size: 40px;
    }

    .ll-inquiry-modal {
        align-items: end;
        padding: 0;
    }

    .ll-inquiry-modal .ll-estimator-layout {
        max-height: 88vh;
    }

    .ll-renewal-pill {
        min-width: 0;
    }

    .ll-renewal-pill__count {
        grid-column: 2;
        min-width: 0;
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ll-renewal-pill__copy em,
    .ll-renewal-pill__count strong,
    .ll-roadblocks__track,
    .ll-portfolio__rail,
    .ll-hero__media img {
        animation: none !important;
        transition: none !important;
    }
}

/*
 * 2026-05 품질 개선 패치.
 * 기존 섹션 구조를 유지하면서 히어로, 견적 모달, 플로팅 CTA의 시각적 완성도를 한 단계 끌어올립니다.
 */
:root {
    --ll-ink: #171c1d;
    --ll-muted: #707777;
    --ll-soft: #f2f3ef;
    --ll-card: #f4f4f1;
    --ll-line: rgba(23, 28, 29, 0.11);
    --ll-dark: #171c1d;
    --ll-lime: #d7ff2f;
    --ll-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-hero h1,
.ll-portfolio h2,
.ll-section-title h2,
.ll-faq h2,
.ll-inquiry h2,
.ll-inquiry-preview h3,
.ll-modal-head h2 {
    letter-spacing: 0;
}

.ll-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.76);
}

.ll-header.is-scrolled {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.ll-logo img {
    height: 29px;
    max-width: 164px;
}

.ll-nav__cta {
    min-height: 40px;
    padding: 0 22px;
    font-size: 13px;
}

.ll-hero {
    isolation: isolate;
    min-height: 860px;
    background: #090b0b;
}

.ll-hero__media img {
    filter: saturate(0.8) contrast(1.05);
}

.ll-hero__overlay {
    background:
        linear-gradient(90deg, rgba(4, 5, 5, 0.82) 0%, rgba(4, 5, 5, 0.57) 43%, rgba(4, 5, 5, 0.22) 100%),
        linear-gradient(180deg, rgba(4, 5, 5, 0.34) 0%, rgba(4, 5, 5, 0.1) 48%, rgba(4, 5, 5, 0.64) 100%);
}

.ll-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.7) 46%, transparent 100%);
}

.ll-hero__content {
    min-height: 860px;
    padding-top: 150px;
    padding-bottom: 96px;
}

.ll-hero .ll-eyebrow {
    width: fit-content;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
}

.ll-hero h1 {
    max-width: 760px;
    font-size: 124px;
    font-weight: 800;
    line-height: 0.9;
    text-wrap: balance;
}

.ll-hero h1 em {
    color: rgba(255, 255, 255, 0.95);
}

.ll-hero__content > p:not(.ll-eyebrow) {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.ll-hero__actions .ll-btn {
    min-height: 46px;
    padding: 0 22px;
}

.ll-hero__stats {
    max-width: 500px;
    margin-top: 70px;
    border-top-color: rgba(255, 255, 255, 0.2);
}

.ll-hero__stats article {
    position: relative;
}

.ll-hero__stats article::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 42px;
    height: 1px;
    background: #fff;
}

.ll-hero__ticker {
    position: absolute;
    right: 0;
    bottom: 92px;
    left: 0;
    display: flex;
    width: min(100%, 760px);
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    gap: 18px;
}

.ll-hero__ticker span::before {
    content: "/";
    margin-right: 18px;
    color: rgba(255, 255, 255, 0.24);
}

.ll-hero-bento {
    right: max(42px, calc((100vw - var(--ll-container)) / 2));
    bottom: 84px;
    width: min(465px, 40vw);
    gap: 10px;
    perspective: 1000px;
}

.ll-hero-bento article {
    min-height: 126px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 22px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(24px) saturate(1.25);
    transform: translateZ(0);
    transition: transform 420ms var(--ll-ease), background 420ms ease, border-color 420ms ease;
}

.ll-hero-bento article:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1));
    transform: translateY(-6px);
}

.ll-hero-bento__main {
    min-height: 264px;
}

.ll-hero-bento strong {
    margin: 12px 0;
    font-size: 32px;
    line-height: 0.98;
    letter-spacing: 0;
}

.ll-hero-bento__main p {
    max-width: 220px;
    line-height: 1.6;
}

.ll-hero-bento__wide {
    display: flex;
    min-height: 104px !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ll-hero-bento__wide div {
    margin-top: 0;
}

.ll-portfolio,
.ll-pricing,
.ll-faq,
.ll-inquiry {
    padding-top: 118px;
    padding-bottom: 118px;
}

.ll-faq details,
.ll-inquiry-preview {
    border: 1px solid rgba(23, 28, 29, 0.06);
    box-shadow: 0 20px 70px rgba(23, 28, 29, 0.045);
}

/* plan-card 후기 override — 새 디자인 유지 */
.ll-plan-card {
    border: none;
    min-height: 560px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ll-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.07), 0 16px 48px rgba(0, 0, 0, 0.08);
}

.ll-inquiry-preview {
    background:
        linear-gradient(135deg, rgba(215, 255, 47, 0.24), transparent 42%),
        linear-gradient(180deg, #f7f8f4, #eeeeea);
}

.ll-inquiry-modal {
    padding: 28px;
}

.ll-form-panel {
    width: min(100%, 1180px);
    max-height: min(90vh, 920px);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 36px;
    background: rgba(246, 247, 242, 0.96);
}

.ll-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 40px rgba(23, 28, 29, 0.1);
}

.ll-estimator-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    min-height: 720px;
}

.ll-estimator-side {
    position: relative;
    display: grid;
    align-content: start;
    padding: 48px 34px 34px;
    background:
        linear-gradient(180deg, rgba(23, 28, 29, 0.92), rgba(23, 28, 29, 0.98)),
        #171c1d;
    color: #fff;
    gap: 22px;
}

.ll-estimator-side::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 255, 47, 0.8), transparent);
}

.ll-modal-head {
    margin-top: 0;
    padding-right: 34px;
}

.ll-modal-head p {
    color: rgba(255, 255, 255, 0.55);
}

.ll-modal-head h2 {
    color: #fff;
    font-size: 68px;
}

.ll-modal-head span {
    display: block;
    max-width: 330px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.66);
}

.ll-estimate-card {
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.ll-estimate-card strong {
    color: var(--ll-lime);
}

.ll-estimator-note {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
}

.ll-estimator-note b {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.ll-estimator-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.ll-estimator-workspace {
    overflow: auto;
    padding: 34px;
}

.ll-step-nav {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0 0 14px;
    background: linear-gradient(180deg, rgba(246, 247, 242, 0.98) 80%, rgba(246, 247, 242, 0));
}

.ll-step-nav button {
    position: relative;
    min-height: 48px;
    overflow: hidden;
    background: #fff;
    color: #8a9090;
}

.ll-step-nav button.is-active,
.ll-step-nav button.is-done {
    background: var(--ll-dark);
}

.ll-step-head h3 {
    font-size: 38px;
    letter-spacing: 0;
    line-height: 1.02;
}

.ll-service-select {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ll-service-option {
    border: 1px solid rgba(23, 28, 29, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(23, 28, 29, 0.045);
    transition: transform 260ms var(--ll-ease), border-color 260ms ease, box-shadow 260ms ease;
}

.ll-service-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(23, 28, 29, 0.075);
}

.ll-service-option.is-selected {
    outline: 0;
    border-color: rgba(23, 28, 29, 0.9);
}

.ll-service-option > label {
    min-height: 96px;
}

.ll-option-list {
    padding-left: 20px;
}

.ll-dynamic-questions fieldset,
.ll-confirm-box,
.ll-form input,
.ll-form select,
.ll-form textarea {
    border: 1px solid rgba(23, 28, 29, 0.08);
    background: #fff;
}

.ll-form input,
.ll-form select,
.ll-form textarea {
    min-height: 50px;
}

.ll-form textarea {
    min-height: 132px;
}

.ll-form-alert--error {
    border: 1px solid rgba(195, 46, 46, 0.18);
    background: #fff1ef;
    color: #8c241d;
}

.ll-form-alert[hidden] {
    display: none;
}

.ll-renewal-pill {
    bottom: 22px;
    min-width: min(720px, calc(100vw - 48px));
    min-height: 72px;
    padding: 10px 12px 10px 24px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(19, 23, 24, 0.88);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
    gap: 22px;
}

.ll-renewal-pill__copy {
    flex: 1;
}

.ll-renewal-pill__copy strong {
    font-size: 17px;
}

.ll-renewal-pill__copy em {
    bottom: calc(100% + 12px);
    left: 8px;
    box-shadow: 0 12px 26px rgba(215, 255, 47, 0.22);
}

.ll-renewal-pill__count {
    min-width: 0;
    height: auto;
}

.ll-renewal-pill__cta {
    min-height: 50px;
    padding: 0 28px;
    transition: transform 220ms var(--ll-ease), box-shadow 220ms ease;
}

.ll-renewal-pill__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(215, 255, 47, 0.24);
}

.ll-social-fab__items {
    visibility: hidden;
}

.ll-social-fab.is-open .ll-social-fab__items {
    visibility: visible;
}

.ll-social-fab__main,
.ll-social-fab__items a,
.ll-social-fab__items button {
    width: 50px;
    height: 50px;
}

@media (max-width: 1100px) {
    .ll-hero-bento {
        right: 28px;
        width: 390px;
    }

    .ll-service-select {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .ll-hero,
    .ll-hero__content {
        min-height: 840px;
    }

    .ll-hero h1 {
        font-size: 62px;
    }

    .ll-portfolio h2,
    .ll-section-title h2,
    .ll-faq h2,
    .ll-inquiry h2,
    .ll-modal-head h2 {
        font-size: 48px;
    }

    .ll-inquiry-preview h3,
    .ll-step-head h3 {
        font-size: 32px;
    }

    .ll-hero-bento {
        right: 18px;
        bottom: 28px;
        left: 18px;
        width: auto;
    }

    .ll-hero-bento__main {
        min-height: 180px;
    }

    .ll-hero__ticker {
        display: none;
    }

    .ll-estimator-layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ll-estimator-side {
        padding: 34px 22px 24px;
    }

    .ll-estimator-workspace {
        padding: 22px;
    }

    .ll-renewal-pill {
        min-width: 0;
    }
}

/*
 * Design.md 기반 전체 UI 업그레이드.
 * AI Native Studio 무드에 맞춰 다크 베이스, Syne/Inter 타이포, 얇은 보더, 낮은 반경을 전역에 적용합니다.
 */
:root {
    --ll-bg: #0c0c0c;
    --ll-surface: #161616;
    --ll-card: #1e1e1e;
    --ll-elevated: #252525;
    --ll-ink: #f2f2f2;
    --ll-muted: #8a8a8a;
    --ll-subtle: #555555;
    --ll-dark: #0c0c0c;
    --ll-lime: #d1f53c;
    --ll-lime-dim: #b8da2a;
    --ll-border: rgba(255, 255, 255, 0.09);
    --ll-border-strong: rgba(255, 255, 255, 0.16);
    --ll-radius: 12px;
    --ll-container: 1280px;
    --ll-font-display: "Syne", "Pretendard", system-ui, sans-serif;
    --ll-font-body: "Inter", "Pretendard", system-ui, sans-serif;
}

body {
    background: var(--ll-bg);
    color: var(--ll-ink);
    font-family: var(--ll-font-body);
}

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

.ll-header {
    border-bottom-color: var(--ll-border);
    background: rgba(12, 12, 12, 0.72);
    backdrop-filter: blur(18px);
}

.ll-header.is-scrolled {
    top: 22px;
    border: 1px solid var(--ll-border-strong);
    background: rgba(12, 12, 12, 0.78);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.ll-logo img {
    filter: invert(1);
}

.ll-nav a {
    color: rgba(255, 255, 255, 0.78);
}

.ll-nav a:hover {
    color: #fff;
}

.ll-nav__cta,
.ll-btn--dark,
.ll-plan-card button,
.ll-inquiry__launch {
    background: var(--ll-lime);
    color: #0c0c0c !important;
}

.ll-nav__cta,
.ll-btn,
.ll-plan-card button,
.ll-inquiry__launch,
.ll-renewal-pill__cta {
    border-radius: 8px;
    font-family: var(--ll-font-body);
    font-weight: 800;
}

.ll-btn--light {
    background: var(--ll-lime);
    color: #0c0c0c;
}

.ll-btn--outline-light {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.ll-btn--ghost {
    border-color: var(--ll-border-strong);
    color: var(--ll-ink);
}

.ll-eyebrow,
.ll-section-title p,
.ll-inquiry__copy > p,
.ll-roadblocks__solutions span,
.ll-estimate-card span,
.ll-step-head span {
    color: var(--ll-lime);
    font-family: var(--ll-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.ll-hero h1,
.ll-portfolio h2,
.ll-roadblocks__intro h2,
.ll-section-title h2,
.ll-faq h2,
.ll-inquiry h2,
.ll-modal-head h2,
.ll-inquiry-preview h3,
.ll-step-head h3,
.ll-plan-card h3,
.ll-roadblocks__solutions h3,
.ll-footer__logo {
    font-family: var(--ll-font-display);
    letter-spacing: 0;
}

.ll-hero h1 em,
.ll-section-title h2 em,
.ll-portfolio h2 span {
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
}

.ll-hero {
    background: #050505;
}

.ll-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.62) 48%, rgba(5, 5, 5, 0.28) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.82) 100%);
}

.ll-hero .ll-eyebrow {
    border-radius: 8px;
    border-color: var(--ll-border-strong);
    color: var(--ll-lime);
    background: rgba(209, 245, 60, 0.07);
}

.ll-hero h1 {
    max-width: 850px;
    font-weight: 800;
}

.ll-hero-bento article,
.ll-estimate-card,
.ll-estimator-note {
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background: rgba(30, 30, 30, 0.72);
    box-shadow: none;
}

.ll-hero-bento article:hover {
    border-color: rgba(209, 245, 60, 0.32);
    background: rgba(37, 37, 37, 0.8);
}

.ll-hero-bento__wide span,
.ll-tabs button.is-active,
.ll-plan-card b {
    border-radius: 6px;
    background: var(--ll-lime);
    color: #0c0c0c;
}

.ll-roadblocks,
.ll-pricing,
.ll-inquiry {
    background: var(--ll-bg);
    color: var(--ll-ink);
}

.ll-portfolio,
.ll-faq,
.ll-footer {
    background: var(--ll-surface);
    color: var(--ll-ink);
}

.ll-roadblocks__intro > p:not(.ll-eyebrow),
.ll-portfolio__head p:not(.ll-eyebrow),
.ll-section-title span,
.ll-inquiry__copy span,
.ll-roadblocks__solutions p,
.ll-plan-card p,
.ll-faq details p,
.ll-inquiry-preview p,
.ll-footer p,
.ll-footer a,
.ll-form small {
    color: var(--ll-muted);
}

.ll-roadblocks__marquee::before {
    background: linear-gradient(90deg, var(--ll-bg), rgba(12, 12, 12, 0));
}

.ll-roadblocks__marquee::after {
    background: linear-gradient(270deg, var(--ll-bg), rgba(12, 12, 12, 0));
}

.ll-roadblocks__track span {
    border: 1px solid var(--ll-border);
    border-radius: 8px;
    background: var(--ll-card);
    color: rgba(255, 255, 255, 0.74);
    box-shadow: none;
}

.ll-roadblocks__solutions {
    border-top-color: var(--ll-border-strong);
    border-bottom-color: var(--ll-border-strong);
}

.ll-roadblocks__solutions article {
    border-right-color: var(--ll-border-strong);
    background: var(--ll-bg);
}

.ll-roadblocks__solutions article::before {
    border-radius: 8px;
    border-color: rgba(209, 245, 60, 0.38);
    background: var(--ll-lime);
    box-shadow: none;
}

.ll-roadblocks__solutions article:hover {
    background: var(--ll-surface);
}

.ll-plan-card,
.ll-faq details,
.ll-inquiry-preview,
.ll-service-option,
.ll-dynamic-questions fieldset,
.ll-confirm-box {
    border: 1px solid var(--ll-border);
    border-radius: 12px;
    background: var(--ll-card);
    color: var(--ll-ink);
    box-shadow: none;
}

.ll-plan-card:hover,
.ll-service-option:hover {
    border-color: rgba(209, 245, 60, 0.26);
    box-shadow: none;
}

.ll-plan-card.is-popular {
    border-color: rgba(209, 245, 60, 0.5);
    background: var(--ll-lime);
    color: #0c0c0c;
}

.ll-plan-card.is-popular p,
.ll-plan-card.is-popular li {
    color: rgba(12, 12, 12, 0.72);
}

.ll-plan-card.is-popular button {
    background: #0c0c0c;
    color: #fff !important;
}

.ll-tabs {
    border: 1px solid var(--ll-border);
    border-radius: 10px;
    background: var(--ll-card);
}

.ll-tabs button {
    border-radius: 6px;
}

.ll-portfolio__rail figure {
    border-radius: 12px;
    background: var(--ll-card);
}

.ll-faq summary {
    color: var(--ll-ink);
}

.ll-inquiry__launch {
    border: 1px solid rgba(209, 245, 60, 0.42);
    box-shadow: none;
}

.ll-inquiry__launch span {
    color: rgba(12, 12, 12, 0.64);
}

.ll-inquiry-preview {
    background:
        linear-gradient(180deg, rgba(209, 245, 60, 0.08), rgba(209, 245, 60, 0)),
        var(--ll-card);
}

.ll-inquiry-preview > span {
    border-radius: 8px;
    background: var(--ll-lime);
    color: #0c0c0c;
}

.ll-form-panel {
    border-color: var(--ll-border-strong);
    background: var(--ll-bg);
}

.ll-estimator-side {
    border-right: 1px solid var(--ll-border);
    background: var(--ll-surface);
}

.ll-estimator-workspace,
.ll-step-nav {
    background: var(--ll-bg);
}

.ll-step-nav {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 80%, rgba(12, 12, 12, 0));
}

.ll-step-nav button,
.ll-form input,
.ll-form select,
.ll-form textarea,
.ll-radio-row label,
.ll-form-alert {
    border: 1px solid var(--ll-border);
    border-radius: 8px;
    background: var(--ll-card);
    color: var(--ll-ink);
}

.ll-step-nav button.is-active,
.ll-step-nav button.is-done {
    background: var(--ll-lime);
    color: #0c0c0c;
}

.ll-form input:focus,
.ll-form select:focus,
.ll-form textarea:focus {
    border-color: rgba(209, 245, 60, 0.58);
    box-shadow: 0 0 0 4px rgba(209, 245, 60, 0.1);
}

.ll-service-option.is-selected {
    border-color: rgba(209, 245, 60, 0.7);
}

.ll-option-list label {
    border-top-color: var(--ll-border);
}

.ll-confirm-box dl div {
    border-bottom-color: var(--ll-border);
}

.ll-renewal-pill {
    border-color: var(--ll-border-strong);
    border-radius: 12px;
    background: rgba(12, 12, 12, 0.92);
}

.ll-renewal-pill__count {
    border-radius: 0;
    background: transparent;
}

.ll-renewal-pill__copy em {
    border-radius: 6px;
    box-shadow: none;
}

.ll-social-fab__main,
.ll-social-fab__items a,
.ll-social-fab__items button {
    border: 1px solid var(--ll-border);
    border-radius: 8px;
    background: var(--ll-card);
    color: #fff;
    box-shadow: none;
}

.ll-social-fab__main {
    background: var(--ll-lime);
    color: #0c0c0c;
}

.ll-footer::after {
    color: rgba(255, 255, 255, 0.035);
}

.ll-footer h2,
.ll-footer__logo,
.ll-footer a:hover {
    color: var(--ll-ink);
}

.ll-footer__bottom {
    border-top-color: var(--ll-border);
}

@media (max-width: 720px) {
    .ll-container {
        width: min(100% - 40px, var(--ll-container));
    }

    .ll-header.is-scrolled {
        width: calc(100% - 32px);
    }

    .ll-nav {
        border: 1px solid var(--ll-border);
        background: rgba(12, 12, 12, 0.96);
    }

    .ll-menu-toggle {
        border-color: var(--ll-border);
        background: var(--ll-card);
    }

    .ll-menu-toggle span:not(.screen-reader-text) {
        background: #fff;
    }
}

/*
 * Design.md 재해석 보정.
 * 직전 다크/라임 적용이 과해져 브랜드가 거칠게 보였기 때문에,
 * Nabulé 레퍼런스의 라이트 에디토리얼 톤을 본문 전반에 다시 적용합니다.
 */
:root {
    --ll-bg: #ffffff;
    --ll-surface: #f6f6f4;
    --ll-card: #f1f1ee;
    --ll-elevated: #ffffff;
    --ll-ink: #202527;
    --ll-muted: rgba(32, 37, 39, 0.62);
    --ll-subtle: rgba(32, 37, 39, 0.42);
    --ll-dark: #202527;
    --ll-lime: #d1f53c;
    --ll-lime-dim: #bfdc32;
    --ll-border: #e8e8e3;
    --ll-border-strong: #d9d9d2;
    --ll-radius: 10px;
    --ll-font-display: "Instrument Serif", "Pretendard", Georgia, serif;
    --ll-font-body: "Pretendard", "Inter", system-ui, sans-serif;
}

body {
    background: #fff;
    color: var(--ll-ink);
    font-family: var(--ll-font-body);
}

.ll-header {
    border-bottom-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

.ll-header.is-scrolled {
    border: 1px solid rgba(32, 37, 39, 0.1);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 50px rgba(32, 37, 39, 0.08);
}

.ll-logo img {
    filter: none;
}

.ll-nav a {
    color: #202527;
}

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

.ll-hero h1,
.ll-portfolio h2,
.ll-roadblocks__intro h2,
.ll-section-title h2,
.ll-faq h2,
.ll-inquiry h2,
.ll-modal-head h2,
.ll-inquiry-preview h3,
.ll-step-head h3,
.ll-plan-card h3,
.ll-roadblocks__solutions h3,
.ll-footer__logo {
    font-family: "Pretendard", var(--ll-font-body);
    font-weight: 760;
    letter-spacing: 0;
}

.ll-hero h1 em,
.ll-section-title h2 em,
.ll-portfolio h2 span {
    font-family: var(--ll-font-display);
    font-style: italic;
    font-weight: 400;
}

.ll-hero h1 {
    max-width: 850px;
    font-size: 108px;
    line-height: 0.92;
}

.ll-hero .ll-eyebrow {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ll-btn,
.ll-nav__cta,
.ll-plan-card button,
.ll-inquiry__launch,
.ll-renewal-pill__cta {
    border-radius: 999px;
}

.ll-btn--light,
.ll-btn--dark,
.ll-plan-card button {
    background: #202527;
    color: #fff !important;
}

.ll-btn--ghost {
    border-color: rgba(32, 37, 39, 0.16);
    color: #202527;
}

.ll-portfolio,
.ll-pricing,
.ll-faq,
.ll-inquiry,
.ll-footer {
    background: #fff;
    color: #202527;
}

.ll-roadblocks {
    background: #f6f6f2;
    color: #202527;
}

.ll-roadblocks__marquee::before {
    background: linear-gradient(90deg, #f6f6f2, rgba(246, 246, 242, 0));
}

.ll-roadblocks__marquee::after {
    background: linear-gradient(270deg, #f6f6f2, rgba(246, 246, 242, 0));
}

.ll-roadblocks__track span {
    border-color: #e7e5dc;
    border-radius: 0;
    background: #eceadd;
    color: rgba(32, 37, 39, 0.76);
}

.ll-roadblocks__solutions {
    border-top: 1px dashed rgba(32, 37, 39, 0.28);
    border-bottom: 1px dashed rgba(32, 37, 39, 0.28);
}

.ll-roadblocks__solutions article {
    border-right-color: rgba(32, 37, 39, 0.22);
    background: #f6f6f2;
}

.ll-roadblocks__solutions article:hover {
    background: #fff;
}

.ll-roadblocks__solutions article::before {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: var(--ll-lime);
}

.ll-eyebrow,
.ll-section-title p,
.ll-inquiry__copy > p,
.ll-roadblocks__solutions span,
.ll-step-head span {
    color: rgba(32, 37, 39, 0.48);
}

.ll-plan-card,
.ll-faq details,
.ll-inquiry-preview,
.ll-service-option,
.ll-dynamic-questions fieldset,
.ll-confirm-box {
    border: 1px solid #e8e8e3;
    border-radius: 14px;
    background: #f5f5f2;
    color: #202527;
}

.ll-plan-card {
    border-radius: 28px;
}

.ll-plan-card.is-popular {
    border-color: #202527;
    background: #202527;
    color: #fff;
}

.ll-plan-card.is-popular p,
.ll-plan-card.is-popular li {
    color: rgba(255, 255, 255, 0.72);
}

.ll-plan-card.is-popular button {
    background: #fff;
    color: #202527 !important;
}

.ll-tabs {
    border: 0;
    border-radius: 999px;
    background: #f1f1ee;
}

.ll-tabs button {
    border-radius: 999px;
}

.ll-tabs button.is-active {
    background: #202527;
    color: #fff;
    border-radius: 999px;
}

.ll-plan-card b {
    background: #202527;
    color: #fff;
}

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

.ll-inquiry__launch span {
    color: rgba(255, 255, 255, 0.58);
}

.ll-inquiry-preview {
    background:
        linear-gradient(135deg, rgba(209, 245, 60, 0.2), rgba(255, 255, 255, 0) 44%),
        #f5f5f2;
}

.ll-inquiry-preview > span {
    background: #202527;
    color: #fff;
}

.ll-form-panel {
    background: #f5f5f2;
    color: #202527;
}

.ll-estimator-side {
    background: #202527;
    color: #fff;
}

.ll-estimator-workspace {
    background: #f5f5f2;
}

.ll-step-nav {
    background: linear-gradient(180deg, rgba(245, 245, 242, 0.98) 80%, rgba(245, 245, 242, 0));
}

.ll-step-nav button,
.ll-form input,
.ll-form select,
.ll-form textarea,
.ll-radio-row label,
.ll-form-alert {
    border-color: #e8e8e3;
    background: #fff;
    color: #202527;
}

.ll-step-nav button.is-active,
.ll-step-nav button.is-done {
    background: #202527;
    color: #fff;
}

.ll-service-option.is-selected {
    border-color: #202527;
}

/* 마지막 cascade 오버라이드 — 프라이싱 카드 다크 톤 통일 */
.ll-renewal-pill {
    border-radius: 999px;
    background: #23262b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    /* min-width 강제 해제 — 콘텐츠 너비에 맞게 자동 축소 */
    min-width: 0;
    width: max-content;
}

/* 툴팁 배지 — 살짝 overlap되게 내림 */
.ll-renewal-pill__badge {
    top: -24px;
}

.ll-renewal-pill__count {
    border-radius: 0;
}

.ll-renewal-pill__cta,
.ll-renewal-pill__copy em,
.ll-social-fab__main {
    background: var(--ll-lime);
    color: #202527;
}

.ll-social-fab__main,
.ll-social-fab__items a,
.ll-social-fab__items button {
    border-radius: 999px;
}

.ll-social-fab__items a,
.ll-social-fab__items button {
    background: #202527;
    color: #fff;
}

.ll-footer::after {
    color: #f1f1ee;
}

.ll-footer h2,
.ll-footer__logo,
.ll-footer a:hover {
    color: #202527;
}

.ll-footer__bottom {
    border-top-color: #e8e8e3;
}

@media (max-width: 720px) {
    .ll-hero h1 {
        font-size: 58px;
    }

    .ll-nav {
        background: rgba(255, 255, 255, 0.96);
    }

    .ll-menu-toggle {
        border-color: rgba(32, 37, 39, 0.14);
        background: #fff;
    }

    .ll-menu-toggle span:not(.screen-reader-text) {
        background: #202527;
    }
}

/*
 * 우측 하단 플로팅 메뉴 최종 override.
 * 이전 디자인 보정 규칙보다 아래에 두어 레퍼런스의 글래스 라벨형 메뉴와 중앙 배너 수평 정렬을 유지합니다.
 */
.ll-social-fab {
    right: 32px;
    bottom: 36px;
    z-index: 970;
}

.ll-social-fab__main {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.6);
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), background 220ms ease, box-shadow 220ms ease;
}

.ll-social-fab__main:hover {
    background: rgba(17, 17, 17, 0.82);
}

.ll-social-fab.is-open .ll-social-fab__main {
    transform: rotate(45deg);
}

.ll-social-fab__items {
    right: 0;
    bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    visibility: hidden;
    pointer-events: none;
}

.ll-social-fab__items a,
.ll-social-fab__items button {
    display: inline-flex;
    width: auto;
    height: 38px;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 13px 0 10px;
    border: 0;
    border-radius: 12px;
    background: rgba(17, 17, 17, 0.6);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    filter: blur(10px);
    transform: translate(12px, 12px);
    transition:
        opacity 280ms ease,
        filter 420ms ease,
        transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
        background 220ms ease;
}

.ll-social-fab__items a:hover,
.ll-social-fab__items button:hover {
    background: rgba(17, 17, 17, 0.82);
}

.ll-social-fab__items span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.ll-social-fab.is-open .ll-social-fab__items {
    visibility: visible;
    pointer-events: auto;
}

.ll-social-fab.is-open .ll-social-fab__items a,
.ll-social-fab.is-open .ll-social-fab__items button {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(1) {
    transition-delay: 80ms;
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(2) {
    transition-delay: 130ms;
}

.ll-social-fab.is-open .ll-social-fab__items :nth-child(3) {
    transition-delay: 180ms;
}

@media (max-width: 720px) {
    .ll-social-fab {
        right: 18px;
        bottom: 96px;
    }

    .ll-social-fab__items {
        bottom: 54px;
    }
}

/*
 * [2026-05-27] 로고 확대 · 모노톤 전환 · 문의 스텝폼 UI 완성도 개선
 * 그린(lime) 전면 제거, 로고 height 44px, 스텝폼 진행바·커스텀 체크박스·필드 스타일 정비
 */

/* ── 1. 로고 크기 확대 ──────────────────────────────────── */
.ll-logo img {
    height: 44px;
    max-width: 230px;
    filter: none;
}

/* ── 2. 모노톤 — 그린(lime) 전면 제거 ─────────────────── */

/* 솔루션 카드 아이콘 원 → 다크 */
.ll-roadblocks__solutions article::before {
    background: #202527;
    border: 0;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.12);
}

/* 솔루션 카드 hover — lime 그라디언트 제거 */
.ll-roadblocks__solutions article:hover {
    background: #fff;
    transform: translateY(-4px);
}

/* estimator side 하단 강조선 */
.ll-estimator-side::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

/* estimate 금액 텍스트 */
.ll-estimate-card strong {
    color: #fff;
}

/* inquiry preview 배경 — lime 그라디언트 제거 */
.ll-inquiry-preview {
    background:
        linear-gradient(160deg, rgba(32, 37, 39, 0.05) 0%, rgba(32, 37, 39, 0) 38%),
        #f5f5f2;
}

/* inquiry launch 버튼 테두리 */
.ll-inquiry__launch {
    border: 1px solid rgba(32, 37, 39, 0.18);
}

/* 폼 포커스 상태 */
.ll-form input:focus,
.ll-form select:focus,
.ll-form textarea:focus {
    border-color: rgba(32, 37, 39, 0.36);
    box-shadow: 0 0 0 3px rgba(32, 37, 39, 0.07);
}

/* 서비스 선택 선택 상태 */
.ll-service-option.is-selected {
    border-color: #202527;
    outline: 0;
}

/* 갱신 알림 배너 CTA → 화이트 반전 (다크 배너 위에서 분리) */
.ll-renewal-pill__cta {
    background: #fff;
    color: #202527;
}

.ll-renewal-pill__cta:hover {
    background: #f0f0ec;
    box-shadow: none;
    transform: none;
}

/* 갱신 알림 슬롯 툴팁 → 화이트 버블 */
.ll-renewal-pill__copy em {
    background: #fff;
    color: #202527;
    border: 1px solid rgba(32, 37, 39, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ll-renewal-pill__copy em::after {
    border-top-color: #fff;
}

/* ── 3. 문의 스텝폼 UI 개선 ─────────────────────────────── */

/* 레이아웃 비율 */
.ll-estimator-layout {
    grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
}

/* 왼쪽 사이드 패널 */
.ll-estimator-side {
    padding: 40px 36px 36px;
    gap: 0;
}

/* 사이드 헤더 */
.ll-modal-head {
    margin-top: 0;
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ll-modal-head h2 {
    font-size: 54px;
    line-height: 0.92;
    color: #fff;
}

.ll-modal-head span {
    max-width: none;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
}

/* estimate 실시간 카드 */
.ll-estimate-card {
    margin-top: 0;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.ll-estimate-card > div {
    align-items: center;
}

.ll-estimate-card span {
    font-size: 10px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
}

.ll-estimate-card strong {
    font-size: 36px;
    letter-spacing: -0.03em;
    color: #fff;
}

/* estimator note */
.ll-estimator-note {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 워크스페이스 */
.ll-estimator-workspace {
    padding: 36px 40px 48px;
    background: #fafaf8;
}

/* ── 스텝 네비게이션 — 진행 트랙 스타일 ── */
.ll-step-nav {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    padding: 0 0 28px;
    background: linear-gradient(180deg, rgba(250, 250, 248, 1) 82%, rgba(250, 250, 248, 0));
    margin-bottom: 4px;
}

.ll-step-nav button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: auto;
    padding: 12px 14px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #aaa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: left;
    cursor: pointer;
    transition: color 220ms ease;
}

/* 스텝 상단 진행 트랙 라인 */
.ll-step-nav button::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 12px;
    background: #e4e4df;
    border-radius: 2px;
    transition: background 280ms ease;
}

.ll-step-nav button.is-active {
    background: transparent;
    color: #202527;
}

.ll-step-nav button.is-active::before {
    background: #202527;
}

.ll-step-nav button.is-done {
    background: transparent;
    color: rgba(32, 37, 39, 0.5);
}

.ll-step-nav button.is-done::before {
    background: rgba(32, 37, 39, 0.3);
}

/* 스텝 헤드 */
.ll-step-head {
    margin-bottom: 6px;
}

.ll-step-head span {
    color: rgba(32, 37, 39, 0.4);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ll-step-head h3 {
    margin: 6px 0 0;
    font-size: 32px;
    font-weight: 760;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #202527;
}

/* ── 서비스 선택 카드 (Step 1) ── */
.ll-service-select {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
    align-items: start;
}

.ll-service-option {
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #e8e8e3;
    box-shadow: 0 1px 4px rgba(32, 37, 39, 0.04);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.ll-service-option:hover {
    border-color: rgba(32, 37, 39, 0.26);
    box-shadow: 0 4px 14px rgba(32, 37, 39, 0.06);
    transform: none;
}

.ll-service-option.is-selected {
    border-color: #202527;
    background: #fff;
    box-shadow: 0 4px 20px rgba(32, 37, 39, 0.08);
}

.ll-service-option > label {
    min-height: 78px;
    padding: 16px 20px;
    gap: 16px;
}

/* 커스텀 체크박스 — 서비스 카드 */
.ll-service-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    min-width: 22px;
    height: 22px;
    border: 1.5px solid #d0d0cc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 180ms ease, background 180ms ease;
    accent-color: unset;
}

.ll-service-option input[type="checkbox"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath d='M1 5l4 4 8-8' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 9px;
    opacity: 0;
    transition: opacity 150ms ease;
}

.ll-service-option input[type="checkbox"]:checked {
    border-color: #202527;
    background: #202527;
}

.ll-service-option input[type="checkbox"]:checked::after {
    opacity: 1;
}

.ll-service-option b {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #202527;
}

.ll-service-option small {
    margin-top: 2px;
    font-size: 12px;
    color: #909490;
}

/* 세부 옵션 리스트 */
.ll-option-list {
    padding: 0 20px 16px 58px;
    gap: 0;
}

.ll-option-list label {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #f2f2ee;
    font-size: 13px;
    color: #3a3d3e;
    font-weight: 500;
    gap: 12px;
}

/* 커스텀 체크박스 — 세부 옵션 */
.ll-option-list label input {
    width: 17px;
    min-width: 17px;
    height: 17px;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #d0d0cc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 180ms ease, background 180ms ease;
    accent-color: unset;
}

.ll-option-list label input::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4.5l3.5 3.5 6.5-7' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 8px;
    opacity: 0;
    transition: opacity 150ms ease;
}

.ll-option-list label input:checked {
    border-color: #202527;
    background: #202527;
}

.ll-option-list label input:checked::after {
    opacity: 1;
}

.ll-option-list label input:disabled {
    border-color: #b8b8b4;
    background: #b8b8b4;
    cursor: default;
}

.ll-option-list label input:disabled::after {
    opacity: 1;
}

.ll-option-list label strong {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    color: rgba(32, 37, 39, 0.6);
    white-space: nowrap;
}

/* ── 정보 입력 폼 (Step 2) ── */
.ll-form {
    gap: 14px;
    margin-top: 20px;
}

.ll-form__row {
    gap: 12px;
}

.ll-form label {
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(32, 37, 39, 0.6);
    text-transform: uppercase;
}

.ll-form input,
.ll-form select,
.ll-form textarea {
    border: 1.5px solid #e8e8e3;
    border-radius: 10px;
    background: #fff;
    color: #202527;
    font-size: 14px;
    padding: 12px 14px;
    min-height: 48px;
}

.ll-form input::placeholder,
.ll-form select::placeholder,
.ll-form textarea::placeholder {
    color: #c0c0ba;
}

.ll-form textarea {
    min-height: 120px;
    border-radius: 12px;
    resize: vertical;
}

/* 동적 질문 fieldset */
.ll-dynamic-questions fieldset {
    padding: 16px 18px 18px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e3;
    background: #fff;
}

.ll-dynamic-questions legend {
    font-size: 13px;
    font-weight: 700;
    color: #202527;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

/* radio 선택 라벨 */
.ll-radio-row label {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #e8e8e3;
    background: #fff;
    color: #202527;
    border-radius: 999px;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
    gap: 8px;
}

.ll-radio-row label:has(input:checked) {
    border-color: #202527;
    background: #202527;
    color: #fff;
}

/* ── 확인 박스 (Step 3) ── */
.ll-confirm-box {
    padding: 0;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #e8e8e3;
    overflow: hidden;
    box-shadow: none;
}

.ll-confirm-box dl {
    gap: 0;
    margin: 0;
}

.ll-confirm-box dl div {
    padding: 14px 20px;
    border-bottom: 1px solid #f2f2ee;
    align-items: center;
    gap: 20px;
}

.ll-confirm-box dl div:last-child {
    border-bottom: 0;
}

.ll-confirm-box dt {
    min-width: 90px;
    color: rgba(32, 37, 39, 0.46);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ll-confirm-box dd {
    font-size: 14px;
    font-weight: 600;
    color: #202527;
    text-align: right;
    margin: 0;
}

.ll-confirm-box p {
    padding: 14px 20px;
    margin: 0;
    background: #fafaf8;
    font-size: 12px;
    color: rgba(32, 37, 39, 0.5);
    line-height: 1.6;
    border-top: 1px solid #f2f2ee;
}

/* ── 스텝 액션 버튼 ── */
.ll-step-actions {
    margin-top: 14px;
    padding-top: 20px;
    border-top: 1px solid #eeeeea;
}

/* ── 에러 / 성공 알림 ── */
.ll-form-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.ll-form-alert--error {
    background: #fdf2f2;
    border-color: rgba(180, 50, 50, 0.14);
    color: #7d1f1f;
}

.ll-form-alert--success {
    background: #f2f7ee;
    border-color: rgba(40, 100, 40, 0.14);
    color: #244022;
}

/* ── 인라인 폼 패널 보정 ── */
.ll-form-panel--inline {
    border-radius: 20px;
    border: 1.5px solid #e8e8e3;
    background: #f5f5f2;
    box-shadow: 0 24px 80px rgba(32, 37, 39, 0.06);
}

.ll-form-panel--inline .ll-estimator-workspace {
    background: #fafaf8;
    border-radius: 0 20px 20px 0;
}

/* ── 반응형 ── */
@media (max-width: 980px) {
    .ll-form-panel--inline .ll-estimator-workspace {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 860px) {
    .ll-step-head h3 {
        font-size: 26px;
    }

    .ll-estimator-workspace {
        padding: 24px 22px 36px;
    }

    .ll-step-nav button {
        font-size: 10px;
        padding: 10px 10px 0;
    }
}

@media (max-width: 720px) {
    .ll-logo img {
        height: 34px;
        max-width: 180px;
    }
}

/* ═══════════════════════════════════════════════════
   개선계획 실행 패치 — 2026-05-27
   FAQ 아이콘 · 커스텀 커서 · Stats 섹션
   ═══════════════════════════════════════════════════ */

/* ── FAQ: 네이티브 화살표 제거, +/– 아이콘으로 교체 ── */
.ll-faq__items details > summary {
    list-style: none;
    position: relative;
    padding-right: 40px;
    cursor: pointer;
}

.ll-faq__items details > summary::-webkit-details-marker {
    display: none;
}

/* 닫힌 상태: + 아이콘 */
.ll-faq__items details > summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: #202527;
    line-height: 1;
    width: 28px;
    text-align: center;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

/* 열린 상태: – 아이콘 (rotate로 부드럽게) */
.ll-faq__items details[open] > summary::after {
    content: '–';
    font-size: 22px;
}

/* ── 커스텀 커서 — PC 마우스 전용 ── */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    .ll-cursor {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 99999;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .ll-cursor__outer {
        position: absolute;
        width: 36px;
        height: 36px;
        border: 1.5px solid rgba(32, 37, 39, 0.45);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition:
            width 0.22s ease,
            height 0.22s ease,
            background 0.22s ease,
            border-color 0.22s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .ll-cursor__inner {
        position: absolute;
        width: 5px;
        height: 5px;
        background: #202527;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.15s ease, height 0.15s ease;
    }

    /* 링크·버튼 위에서 확대 */
    .ll-cursor--hover .ll-cursor__outer {
        width: 52px;
        height: 52px;
        border-color: rgba(32, 37, 39, 0.7);
        background: rgba(32, 37, 39, 0.06);
    }

    .ll-cursor--hover .ll-cursor__inner {
        width: 3px;
        height: 3px;
    }

    /* 포트폴리오 레일 위에서 DRAG 표시 */
    .ll-cursor--drag .ll-cursor__outer {
        width: 68px;
        height: 68px;
        background: #202527;
        border-color: #202527;
    }

    .ll-cursor--drag .ll-cursor__inner {
        width: 0;
        height: 0;
        background: transparent;
    }

    .ll-cursor--drag .ll-cursor__outer::after {
        content: 'DRAG';
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.1em;
    }
}

/* ── Stats 숫자 섹션 ── */
.ll-stats {
    padding: 64px 0;
    background: #fafaf8;
    border-top: 1px solid #eeeeea;
    border-bottom: 1px solid #eeeeea;
}

.ll-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.ll-stats__item {
    padding: 20px 16px;
    position: relative;
}

/* 항목 사이 수직 구분선 */
.ll-stats__item + .ll-stats__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #e4e4e0;
}

.ll-stats__item strong {
    display: block;
    font-family: var(--ll-font-display, "Instrument Serif", serif);
    font-size: 54px;
    font-weight: 400;
    color: #202527;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.ll-stats__item > span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(32, 37, 39, 0.52);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Stats 모바일 — 2열로 */
@media (max-width: 680px) {
    .ll-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 3번째부터는 위에 구분선(수평)으로 대체 */
    .ll-stats__item:nth-child(n+3) {
        border-top: 1px solid #e4e4e0;
    }

    /* 짝수 아이템: 수직 구분선 유지 */
    /* 홀수 아이템(3번째): 수직 구분선 없애야 함 — nth-child 조합 */
    .ll-stats__item:nth-child(3)::before {
        display: none;
    }

    .ll-stats__item strong {
        font-size: 40px;
    }
}

/* ═══════════════════════════════════════════════════
   신규 섹션 — 벨로시티 텍스트 · 프로세스 · CTA 배너
   ═══════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────
   벨로시티 키네틱 텍스트
   ────────────────────────────────────────────────── */
/* ── 스크롤 속도 반응 텍스트 배너 ──
   sticky 제거 — sticky는 84px 띠 아래로 빈 viewport가 채워지는 구조적 문제가 있음.
   자연스럽게 스크롤되며 GSAP getVelocity()로 속도 반응은 그대로 유지. */
.ll-vel-text {
    /* height: auto — 84px 띠 하나만 존재 */
}

.ll-vel-text__viewport {
    position: relative;
    z-index: 90;
    height: 84px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #09090B;
    border-bottom: 1px solid #09090B;
}

.ll-vel-text__line {
    display: block;
    white-space: nowrap;
    margin: 0;
    padding-left: 6vw;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #09090B;
    will-change: transform;
    transform-origin: left center;
    user-select: none;
}

/* 구분 점 */
.ll-vel-text__line em {
    font-style: normal;
    color: #09090B;
    opacity: 0.25;
    margin: 0 0.6em;
}

@media (prefers-reduced-motion: reduce) {
    .ll-vel-text { display: none; }
}

/* ──────────────────────────────────────────────────
   작업 프로세스 섹션
   ────────────────────────────────────────────────── */
.ll-process {
    padding: 112px 0 120px;
    background: #ffffff;
    border-top: 1px solid #eeeeea;
}

/* 2열 레이아웃: 좌측 네비 sticky · 우측 콘텐츠 */
.ll-process__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 60px;
    align-items: start;
}

.ll-process__aside {
    position: sticky;
    top: 130px;
}

.ll-process__aside h2 {
    font-family: var(--ll-font-display, "Instrument Serif", serif);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 10px 0 32px;
    color: #202527;
}

/* 스텝 네비 버튼 */
.ll-process__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ll-process__navbtn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: rgba(32, 37, 39, 0.42);
    cursor: pointer;
    text-align: left;
    transition: background 200ms ease, color 200ms ease;
}

.ll-process__navbtn:hover {
    background: #f4f4f1;
    color: rgba(32, 37, 39, 0.72);
}

.ll-process__navbtn.is-active {
    background: #f4f4f1;
    color: #202527;
}

.ll-process__num {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    width: 28px;
    color: inherit;
    opacity: 0.54;
}

.ll-process__navbtn.is-active .ll-process__num {
    opacity: 1;
}

.ll-process__navlabel {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* 완료 체크 마크 (JS로 is-done 추가 시 표시) */
.ll-process__check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(32, 37, 39, 0.2);
    transition: background 200ms ease, border-color 200ms ease;
}

.ll-process__navbtn.is-done .ll-process__check {
    background: #202527;
    border-color: #202527;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23fff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center;
}

/* 스테이지: 패널 전환 */
.ll-process__stage {
    position: relative;
    min-height: 420px;
}

.ll-process__panel {
    display: none;
    opacity: 0;
    transition: opacity 0.26s ease;
}

.ll-process__panel.is-active {
    display: block;
    opacity: 1;
}

.ll-process__panel-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 24px;
}

.ll-process__panel-head b {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(32, 37, 39, 0.36);
    text-transform: uppercase;
}

.ll-process__panel-head h3 {
    margin: 0;
    font-family: var(--ll-font-display, "Instrument Serif", serif);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #202527;
    line-height: 1.1;
}

.ll-process__desc {
    font-size: 16px;
    line-height: 1.72;
    color: rgba(32, 37, 39, 0.7);
    margin: 0 0 20px;
    max-width: 520px;
}

.ll-process__detail {
    margin: 0 0 36px;
    padding: 16px 20px;
    border-left: 2px solid #e4e4e0;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(32, 37, 39, 0.5);
    font-style: normal;
    border-radius: 0 8px 8px 0;
    background: #fafaf8;
}

/* 스텝 번호를 대형 배경으로 시각화 */
.ll-process__visual {
    display: flex;
    align-items: flex-end;
    height: 120px;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.ll-process__visual span {
    font-family: var(--ll-font-display, "Instrument Serif", serif);
    font-size: 160px;
    font-weight: 400;
    line-height: 1;
    color: #ebebeb;
    letter-spacing: -0.04em;
    translate: 0 24px;
}

/* 모바일 */
@media (max-width: 860px) {
    .ll-process__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ll-process__aside {
        position: static;
    }

    .ll-process__aside h2 {
        font-size: 32px;
    }

    .ll-process__panel-head h3 {
        font-size: 28px;
    }

    .ll-process__visual {
        height: 80px;
    }

    .ll-process__visual span {
        font-size: 110px;
    }
}

/* ──────────────────────────────────────────────────
   CTA 배너 — 다크 배경, 마지막 전환 포인트
   ────────────────────────────────────────────────── */
.ll-cta-banner {
    padding: 40px 24px;
}

.ll-cta-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    background: #202527;
    color: #ffffff;
    border-radius: 28px;
    padding: 60px 56px;
}

.ll-cta-banner .ll-eyebrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 16px;
    display: block;
}

.ll-cta-banner h2 {
    font-family: var(--ll-font-display, "Instrument Serif", serif);
    font-size: 66px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin: 0 0 18px;
    color: #ffffff;
}

.ll-cta-banner span {
    display: block;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.52);
    max-width: 460px;
}

.ll-cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    min-width: 200px;
}

.ll-cta-banner__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #202527;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 200ms ease, transform 200ms ease;
}

.ll-cta-banner__btn:hover {
    background: #f0f0ec;
    transform: translateY(-2px);
}

.ll-cta-banner__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color 200ms ease, color 200ms ease;
}

.ll-cta-banner__link:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* CTA 배너 모바일 */
@media (max-width: 720px) {
    .ll-cta-banner {
        padding: 24px 16px;
    }

    .ll-cta-banner__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 28px;
        border-radius: 20px;
    }

    .ll-cta-banner h2 {
        font-size: 40px;
    }

    .ll-cta-banner__actions {
        flex-direction: row;
        min-width: 0;
    }

    .ll-cta-banner__btn,
    .ll-cta-banner__link {
        flex: 1;
        font-size: 13px;
        padding: 0 16px;
    }
}

/* ================================================================
   포트폴리오 아카이브 페이지
   GalleryGridBlock 레퍼런스 → 바닐라 JS + WordPress 번역
   ================================================================ */

/* ── 페이지 헤더 ── */
.ll-portfolio-page__header {
    padding: 120px 0 64px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.ll-portfolio-page__header h1 {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #09090B;
    margin: 8px 0 20px;
}

.ll-portfolio-page__subtitle {
    font-size: 16px;
    color: #71717B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── 필터 탭 ── */
.ll-portfolio-filter {
    position: sticky;
    top: 72px; /* 헤더 높이에 맞춤 */
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
}

.ll-portfolio-filter .ll-container {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ll-portfolio-filter .ll-container::-webkit-scrollbar {
    display: none;
}

.ll-portfolio-filter__list {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.ll-portfolio-filter__btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 99px;
    font-family: var(--ll-font-body, "Inter", sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #71717B;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
}

.ll-portfolio-filter__btn:hover {
    background: #f4f4f5;
    color: #09090B;
}

.ll-portfolio-filter__btn.is-active {
    background: #09090B;
    color: #ffffff;
}

/* ── 그리드 레이아웃 ── */
.ll-portfolio-grid-wrap {
    padding: 60px 0 100px;
    background: #fafafa;
    min-height: 60vh;
}

.ll-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/* ── 그리드 아이템 ── */
.ll-portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: #e8e8e8;
    outline: none;
    /* 포커스 링 — 접근성 */
    --focus-ring: 0 0 0 3px rgba(10, 90, 48, 0.5);
}

.ll-portfolio-item:focus-visible {
    box-shadow: var(--focus-ring);
    z-index: 2;
}

.ll-portfolio-item__thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ll-portfolio-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.ll-portfolio-item:hover .ll-portfolio-item__thumb img,
.ll-portfolio-item:focus-visible .ll-portfolio-item__thumb img {
    transform: scale(1.06);
}

/* 이미지 없을 때 플레이스홀더 */
.ll-portfolio-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f5;
    color: #9F9FA9;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── 호버 오버레이 ── */
.ll-portfolio-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 11, 0.72);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.ll-portfolio-item:hover .ll-portfolio-item__overlay,
.ll-portfolio-item:focus-visible .ll-portfolio-item__overlay {
    opacity: 1;
}

.ll-portfolio-item__overlay-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(8px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ll-portfolio-item:hover .ll-portfolio-item__overlay-inner,
.ll-portfolio-item:focus-visible .ll-portfolio-item__overlay-inner {
    transform: translateY(0);
}

.ll-portfolio-item__cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #15C85A; /* primary green */
}

.ll-portfolio-item__title {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.ll-portfolio-item__zoom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    margin-top: 6px;
    transition: background 0.18s ease;
}

.ll-portfolio-item:hover .ll-portfolio-item__zoom-icon {
    background: rgba(255, 255, 255, 0.28);
}

/* ── 빈 상태 ── */
.ll-portfolio-empty {
    padding: 80px 0;
    text-align: center;
}

.ll-portfolio-empty h2 {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    color: #09090B;
    margin: 12px 0 16px;
}

.ll-portfolio-empty p {
    color: #71717B;
    margin-bottom: 32px;
}

/* ================================================================
   라이트박스
   ================================================================ */

.ll-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 기본 숨김 — JS가 aria-hidden="false"로 전환 */
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.ll-lightbox.is-open {
    pointer-events: all;
    opacity: 1;
}

.ll-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 11, 0.9);
    cursor: zoom-out;
}

.ll-lightbox__stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 64px 80px;
    box-sizing: border-box;
}

/* ── 이미지 컨테이너 ── */
.ll-lightbox__img-wrap {
    position: relative;
    max-width: calc(100vw - 200px);
    max-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.ll-lightbox__img.is-loaded {
    opacity: 1;
}

/* 로딩 스피너 */
.ll-lightbox__spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ll-lightbox__spinner::after {
    content: '';
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: lb-spin 0.7s linear infinite;
}

.ll-lightbox__img.is-loaded ~ .ll-lightbox__spinner::after {
    display: none;
}

@keyframes lb-spin {
    to { transform: rotate(360deg); }
}

/* ── 닫기 버튼 ── */
.ll-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease;
    z-index: 2;
}

.ll-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ── 이전/다음 버튼 ── */
.ll-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, opacity 0.18s ease;
    z-index: 2;
}

.ll-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.ll-lightbox__nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.ll-lightbox__nav--prev { left: 20px; }
.ll-lightbox__nav--next { right: 20px; }

/* ── 캡션 ── */
.ll-lightbox__caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    padding: 8px 20px;
    white-space: nowrap;
    max-width: calc(100vw - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.ll-lightbox__caption-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #15C85A;
}

.ll-lightbox__caption-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.ll-lightbox__caption-counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 6px;
}

/* ── 모바일 반응형 ── */
@media (max-width: 900px) {
    .ll-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ll-portfolio-page__header {
        padding: 80px 0 48px;
    }
}

@media (max-width: 600px) {
    .ll-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .ll-portfolio-filter {
        top: 60px;
    }

    .ll-lightbox__stage {
        padding: 56px 12px 60px;
    }

    .ll-lightbox__img-wrap {
        max-width: 100%;
    }

    .ll-lightbox__nav--prev { left: 8px; }
    .ll-lightbox__nav--next { right: 8px; }

    .ll-lightbox__caption {
        bottom: 12px;
        padding: 6px 14px;
    }

    .ll-lightbox__caption-title {
        display: none;
    }

    .ll-portfolio-item__overlay {
        /* 모바일: 터치 탭 시 오버레이 표시 */
        opacity: 0;
    }

    .ll-portfolio-item.is-touched .ll-portfolio-item__overlay {
        opacity: 1;
    }

    .ll-portfolio-item.is-touched .ll-portfolio-item__overlay-inner {
        transform: translateY(0);
    }
}

/* ================================================================
   호버 인터랙션 — 링크·버튼·카드 등 모든 클릭 요소에 반응
   ================================================================ */

/* 일반 링크 트랜지션 */
a {
    transition: color 180ms ease, opacity 180ms ease;
}

/* 플랜 카드 호버: 살짝 들림 */
.ll-plan-card {
    cursor: default;
}

.ll-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

/* 포트폴리오 rail 이미지 호버 */
.ll-portfolio__rail figure {
    transition: transform 300ms var(--ll-ease);
}

.ll-portfolio__rail figure:hover {
    transform: scale(1.03);
}

/* 프로세스 네비 버튼 호버 */
.ll-process__navbtn:not(.is-active):hover {
    background: rgba(23, 28, 29, 0.05);
}

/* FAQ summary 호버 */
.ll-faq details summary {
    transition: background 150ms ease;
}

.ll-faq details summary:hover {
    background: rgba(23, 28, 29, 0.03);
}

/* .ll-btn 호버 통합 */
.ll-btn:not(:disabled):hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.ll-btn--dark:hover,
.ll-btn--ghost:hover {
    opacity: 1;
}

/* 소셜 FAB 아이템 호버 */
.ll-social-fab__items a:hover,
.ll-social-fab__items button:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* 헤더 네비 링크 호버 */
.ll-nav a:hover {
    color: var(--ll-ink);
    opacity: 0.7;
}

/* CTA 배너 버튼 — 이미 있는 hover 강화 */
.ll-cta-banner__btn:hover,
.ll-cta-banner__link:hover {
    transform: translateY(-2px);
}

/* 문의 버튼 호버 */
.ll-inquiry__launch:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ================================================================
   프로세스 비주얼 — 숫자 플레이스홀더 & 영상 컨테이너
   ================================================================ */

.ll-process__visual-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(145deg, #f6f6f2 0%, #ededea 100%);
    overflow: hidden;
}

.ll-process__visual-placeholder span {
    font-size: 120px;
    font-weight: 800;
    font-family: var(--ll-font-display);
    color: rgba(23, 28, 29, 0.07);
    letter-spacing: -0.08em;
    line-height: 1;
    user-select: none;
}

.ll-process__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* ================================================================
   푸터 — 빅로고 배너 + 브랜드 로고 이미지
   ================================================================ */

/* 기존 ::after 텍스트 숨김 — 빅로고로 대체 */
.ll-footer::after {
    display: none;
}

.ll-footer__biglogo {
    padding: 32px 0 0;
    overflow: hidden;
}

.ll-footer__biglogo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    opacity: 0.12;
    filter: contrast(1.1);
    user-select: none;
    pointer-events: none;
}

/* 브랜드 섹션 로고 이미지 */
.ll-footer__logo img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* count-nums min-width 해제 — 내용에 맞게 자동 */
.ll-renewal-pill__count-nums {
    min-width: 0;
}

/* ================================================================
   패치 2026-05-27 B: 빅로고 / 텍스트 위계 / 로드블록 카드 / 문의 UI / 모달
   ================================================================ */

/* ── 1. 푸터 빅로고 — 여백 없이 edge-to-edge 블랙 ──
   padding-bottom 제거해 biglogo가 footer 바닥에 밀착.
   opacity 1 + filter none 으로 logo-b.png 블랙 그대로 표시. */
.ll-footer {
    padding-bottom: 0;
}
.ll-footer__biglogo {
    margin-top: 56px;
    padding: 0;
    line-height: 0; /* img 하단 공백 제거 */
    overflow: hidden;
}
.ll-footer__biglogo img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    filter: none;
}

/* ── 2. 한글 텍스트 위계 강화 ──
   제목(h2/h3)은 font-weight 800으로 올리고, 본문 단락은 더 작고 가볍게.
   한글은 동일 폰트 크기에서 라틴보다 크게 보이므로 세밀 조정 필요. */

/* 섹션 대표 h2 — 굵기 800으로 강화 */
.ll-roadblocks__intro h2 {
    font-weight: 800;
    font-size: 70px;
}
.ll-portfolio h2,
.ll-section-title h2,
.ll-faq h2,
.ll-inquiry h2 {
    font-weight: 800;
}

/* 섹션 설명 단락 — 크기 줄여 h2 와의 대비 강화 */
.ll-roadblocks__intro > p:not(.ll-eyebrow) {
    font-size: 14px;
    line-height: 1.85;
    color: var(--ll-muted);
}

/* 로드블록 카드 내 요소 */
.ll-rb-card__body h3 {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}
.ll-rb-card__body p {
    font-size: 13px;
    line-height: 1.75;
    color: #7a807d;
}

/* 아이브로 공통 — 더 작고 letter-spacing 강화 */
.ll-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

/* 프로세스 섹션 aside h2 */
.ll-process__aside h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* 포트폴리오 섹션 본문 */
.ll-portfolio__head > div > p:not(.ll-eyebrow) {
    font-size: 14px;
    line-height: 1.75;
    color: var(--ll-muted);
}

/* ── 3. 로드블록 카드 하단 여백 제거 ──
   ll-rb-card__visual 영역(176px)을 삭제했으므로 min-height를 해제해
   콘텐츠 높이에 맞게 자동 조정. */
.ll-rb-card {
    min-height: 0;
}
.ll-rb-card__body {
    padding-bottom: 32px;
}

/* ── 4. 문의 섹션 UI 개선 ──
   inquiry__copy: h2 크기 + 버튼 내부 텍스트 위계.
   inquiry-preview: 다크 카드로 시각적 임팩트 강화. */

/* 좌측 copy 블록 */
.ll-inquiry__copy h2,
.ll-inquiry h2 {
    font-size: 58px;
    letter-spacing: -0.05em;
    line-height: 0.98;
    font-weight: 800;
}
.ll-inquiry__copy > span {
    display: block;
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ll-muted);
}
/* 바로 시작하기 버튼 내부 재정렬 */
.ll-inquiry__launch span {
    font-size: 10px;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.48);
}
.ll-inquiry__launch strong {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* 우측 preview 카드 — 다크 테마로 전환해 대비 강화 */
.ll-inquiry-preview {
    background: var(--ll-dark);
    color: #fff;
    padding: 40px;
    min-height: 320px;
}
.ll-inquiry-preview > span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 800;
    width: 40px;
    height: 40px;
}
.ll-inquiry-preview h3 {
    color: #fff;
    margin: 36px 0 14px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
}
.ll-inquiry-preview p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    max-width: 420px;
}

/* ── 5. 바로견적 모달 내부 UI 개선 ──
   h2 크기 축소, 폼 입력 포커스 명확화, confirm box 정렬 개선. */

/* 모달 사이드 h2 — 68px → 48px */
.ll-modal-head h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.02;
}
/* 모달 설명 */
.ll-modal-head span {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}
/* step-head h3 */
.ll-step-head h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
/* 입력 필드 포커스 */
.ll-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.ll-form select:focus,
.ll-form textarea:focus {
    border-color: rgba(23, 28, 29, 0.5);
    box-shadow: 0 0 0 3px rgba(23, 28, 29, 0.06);
    background: #fff;
}
/* 확인 박스 (step 3) 개선 */
.ll-confirm-box {
    border: 1px solid var(--ll-line);
    border-radius: 18px;
    padding: 24px;
    background: var(--ll-card);
}
.ll-confirm-box dt {
    font-size: 11px;
    color: var(--ll-muted);
    font-weight: 700;
    letter-spacing: 0.08em;
}
.ll-confirm-box dd {
    font-size: 14px;
    font-weight: 600;
    color: var(--ll-ink);
}
/* 서비스 옵션 이름 */
.ll-service-option b {
    font-size: 16px;
    font-weight: 800;
}
/* 스텝 내비 버튼 */
.ll-step-nav button {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
}
/* 스텝 액션 버튼 정렬 */
.ll-step-actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--ll-line);
}

/* ================================================================
   Prisma Hero — 타이포그래피 / 레이아웃 / 버튼 / Word Pull-Up
   참고 코드: Prisma Hero (React/Framer Motion) → Vanilla CSS 대응
   ================================================================ */

/* ── 그라디언트 오버레이 — 상단(헤더 가독성)·하단(콘텐츠 가독성) */
.ll-hero-sequence__gradient {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        transparent 35%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

/* ── 콘텐츠 컨테이너 — 바닥 정렬 */
.ll-hero-sequence__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ── 바닥 그리드 — 좌: 대형 타이틀 / 우: 설명+CTA */
.ll-hero-sequence__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 48px;
    padding: 0 48px 40px;
}

/* ── 히어로 h1 — Prisma 스타일: 뷰포트 기반 대형, 타이트 자간 */
.ll-hero-sequence__title {
    max-width: none;
    margin: 0;
    color: #E1E0CC;
    font-size: clamp(72px, 18vw, 280px);
    font-weight: 500;
    font-family: var(--ll-font-body);
    letter-spacing: -0.07em;
    line-height: 0.86;
    text-wrap: initial;
}

/* ── Word Pull-Up 애니메이션 — 단어별 순차 등장 */
@keyframes ll-word-up {
    from { transform: translateY(28px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.ll-hero-sequence__title .ll-word {
    display: inline-block;
    opacity: 0;
}

.ll-hero-sequence__title.is-animated .ll-word {
    animation: ll-word-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 단어 수 5개 기준 — 더 많을 경우 JS가 nth-child 초과분도 처리 */
.ll-hero-sequence__title.is-animated .ll-word:nth-child(1) { animation-delay: 0s; }
.ll-hero-sequence__title.is-animated .ll-word:nth-child(2) { animation-delay: 0.08s; }
.ll-hero-sequence__title.is-animated .ll-word:nth-child(3) { animation-delay: 0.16s; }
.ll-hero-sequence__title.is-animated .ll-word:nth-child(4) { animation-delay: 0.24s; }
.ll-hero-sequence__title.is-animated .ll-word:nth-child(5) { animation-delay: 0.32s; }
.ll-hero-sequence__title.is-animated .ll-word:nth-child(6) { animation-delay: 0.40s; }

/* ── 우측 사이드: 설명 + CTA */
.ll-hero-sequence__side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 10px;
    max-width: 280px;
}

.ll-hero-sequence__desc {
    margin: 0;
    color: rgba(225, 224, 204, 0.68);
    font-size: 13px;
    line-height: 1.55;
    white-space: pre-line;
}

/* ── 히어로 CTA 버튼 — Prisma pill + circle arrow ──
   bg-primary(cream) · text-black · asymmetric padding · right circle icon */
.ll-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 5px 5px 22px;
    border-radius: 999px;
    background: #E1E0CC;
    color: #0c0c0c;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: gap 320ms cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.ll-hero-cta:hover {
    gap: 18px;
    color: #0c0c0c;
}

/* 우측 원형 화살표 아이콘 */
.ll-hero-cta__icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0c0c0c;
    color: #E1E0CC;
    flex-shrink: 0;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-hero-cta:hover .ll-hero-cta__icon {
    transform: scale(1.12);
}

/* pointer-events-none 부모 안에서도 클릭 허용 */
.ll-pointer-auto {
    pointer-events: auto;
}

/* ── 네비 링크 타이포 — Prisma 참조: 10px~14px, 가벼운 크림톤 */
.ll-nav a::before {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.ll-nav a::after {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* ── 모바일 히어로 — 세로 스택 */
@media (max-width: 800px) {
    .ll-hero-sequence__bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 24px 32px;
    }

    .ll-hero-sequence__side {
        max-width: 100%;
    }

    .ll-hero-sequence__title {
        font-size: clamp(56px, 22vw, 160px);
        letter-spacing: -0.06em;
    }
}

/* ═══════════════════════════════════════════════════════════════
   헤더 — Prisma 스타일: 상단 다크 필, 하단만 라운드
   패치 2026-05-27 C
   배경: 기존 glass-white → 다크 반투명 블랙
   형태: 기존 is-scrolled 플로팅 필 → 상단 고정 + 하단 라운드 유지
═══════════════════════════════════════════════════════════════ */

/* 기본: 다크 배경 + 하단 라운드만 */
.ll-header {
    background: rgba(0, 0, 0, 0.88) !important;
    backdrop-filter: blur(12px) saturate(1.2) !important;
    border-bottom: none !important;
    border-radius: 0 0 20px 20px !important;
    box-shadow: none !important;
}

/* 스크롤 후: 플로팅 없이 top·width 고정, 섀도만 추가 */
.ll-header.is-scrolled {
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 0 20px 20px !important;
    background: rgba(0, 0, 0, 0.96) !important;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.28) !important;
}

/* 네비 링크: 크림 컬러 */
.ll-nav a,
.ll-nav a::before {
    color: rgba(225, 224, 204, 0.75) !important;
}

.ll-nav a:hover,
.ll-nav a:hover::before {
    color: rgba(225, 224, 204, 1) !important;
}

/* active/current 링크 */
.ll-nav .current-menu-item > a,
.ll-nav .current-menu-item > a::before {
    color: #E1E0CC !important;
}

/* CTA 버튼: Prisma 크림 필 + 다크 원형 화살표 */
.ll-nav__cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 5px 5px 5px 18px !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 999px !important;
    background: #E1E0CC !important;
    color: #0c0c0c !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: gap 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ll-nav__cta:hover {
    background: #E1E0CC !important;
    color: #0c0c0c !important;
    gap: 16px !important;
}

/* CTA 원형 화살표 아이콘 */
.ll-nav__cta-icon {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #0c0c0c;
    color: #E1E0CC;
    flex-shrink: 0;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ll-nav__cta:hover .ll-nav__cta-icon {
    transform: scale(1.12);
}

/* 모바일 햄버거 바: 크림 컬러 */
.ll-menu-toggle span {
    background-color: #E1E0CC !important;
}

/* 모바일 메뉴 패널: 다크 배경 */
@media (max-width: 900px) {
    .ll-nav {
        background: rgba(10, 10, 10, 0.97) !important;
    }

    .ll-nav a,
    .ll-nav a::before {
        color: rgba(225, 224, 204, 0.85) !important;
    }

    .ll-nav a:hover,
    .ll-nav a:hover::before {
        color: #E1E0CC !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   헤더 V2 — Prisma 중앙 다크 네비 필 (로고 左 / 네비필 中 / CTA 右)
   패치 2026-05-27 D
   C 패치(전체너비 다크)를 동일 파일 후위 규칙으로 완전 덮어씀
═══════════════════════════════════════════════════════════════ */

/* 헤더 컨테이너: 투명 + 3열 그리드, 클릭은 자식에만 */
.ll-header {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: start !important;
    padding: 0 48px !important;
    min-height: 0 !important;
    pointer-events: none !important;
}

/* 직계 자식만 클릭 허용 */
.ll-header > * {
    pointer-events: auto !important;
}

/* is-scrolled: 컨테이너 변화 없음 */
.ll-header.is-scrolled {
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* 로고: 좌열, 위 패딩으로 필 콘텐츠와 세로 맞춤 */
.ll-header > .ll-logo {
    grid-column: 1;
    justify-self: start;
    align-self: start;
    padding-top: 16px;
}

/* ── 중앙 다크 네비 필 ── */
.ll-header__pill {
    grid-column: 2;
    align-self: start;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border-radius: 0 0 24px 24px;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: box-shadow 400ms ease;
}

/* 스크롤 후: 필에만 섀도 추가 */
.ll-header.is-scrolled .ll-header__pill {
    box-shadow: 0 10px 48px rgba(0, 0, 0, 0.36);
}

/* 필 안 네비: 절대 위치 해제, 인라인 배치 */
.ll-header__pill .ll-nav {
    position: static !important;
    display: flex !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.ll-header__pill .ll-nav__list {
    gap: 36px;
}

/* 네비 링크: 크림 컬러 */
.ll-header__pill .ll-nav a {
    color: rgba(225, 224, 204, 0.8) !important;
    font-size: 0 !important;
}

.ll-header__pill .ll-nav a::before {
    color: rgba(225, 224, 204, 0.8) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
}

.ll-header__pill .ll-nav a::after {
    color: rgba(225, 224, 204, 1) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
}

.ll-header__pill .ll-nav a:hover::before {
    color: rgba(225, 224, 204, 0) !important;
}

.ll-header__pill .ll-nav a:hover::after {
    color: rgba(225, 224, 204, 1) !important;
}

/* 햄버거: 데스크탑 숨김, 필 안에 배치 */
.ll-header__pill .ll-menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(225, 224, 204, 0.25);
    border-radius: 999px;
    background: transparent;
}

.ll-header__pill .ll-menu-toggle span:not(.screen-reader-text) {
    background: #E1E0CC !important;
    width: 15px;
    height: 1.5px;
    margin: 3px auto;
}

/* ── CTA 버튼: 우열, Prisma 크림 필 ── */
.ll-header > .ll-nav__cta {
    grid-column: 3;
    justify-self: end;
    align-self: start;
    margin-top: 12px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 5px 5px 5px 18px !important;
    height: auto !important;
    min-height: 0 !important;
    width: auto !important;
    border-radius: 999px !important;
    background: #E1E0CC !important;
    color: #0c0c0c !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: gap 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ll-header > .ll-nav__cta:hover {
    gap: 16px !important;
}

/* ── 모바일 (≤900px) ── */
@media (max-width: 900px) {
    /* 2열: 로고 | 필(햄버거만 표시) */
    .ll-header {
        padding: 0 20px !important;
        grid-template-columns: 1fr auto !important;
    }

    /* CTA 숨김 */
    .ll-header > .ll-nav__cta {
        display: none !important;
    }

    /* 필: 햄버거만 보이게 축소 */
    .ll-header__pill {
        padding: 10px 16px;
        gap: 0;
    }

    /* 데스크탑 네비 숨기고 햄버거 표시 */
    .ll-header__pill .ll-nav {
        display: none !important;
    }

    .ll-header__pill .ll-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* 모바일 메뉴 열림: 전체 화면 오버레이 */
    .ll-header__pill .ll-nav.is-open {
        display: grid !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1001 !important;
        background: rgba(8, 8, 8, 0.97) !important;
        padding: 100px 36px 60px !important;
        align-content: center;
    }

    .ll-header__pill .ll-nav.is-open .ll-nav__list {
        display: grid;
        gap: 0;
    }

    .ll-header__pill .ll-nav.is-open .ll-nav__list li {
        border-bottom: 1px solid rgba(225, 224, 204, 0.1);
    }

    .ll-header__pill .ll-nav.is-open .ll-nav__list a {
        display: block !important;
        padding: 20px 0 !important;
        font-size: 0 !important;
        overflow: hidden !important;
    }

    .ll-header__pill .ll-nav.is-open .ll-nav__list a::before {
        font-size: 28px !important;
        font-weight: 500 !important;
        color: rgba(225, 224, 204, 0.9) !important;
        letter-spacing: -0.03em !important;
    }

    .ll-header__pill .ll-nav.is-open .ll-nav__list a:hover::before {
        color: #ffffff !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   헤더 E — 로고 흰색 / 버튼·텍스트 화이트 / 호버 클리핑 수정
   패치 2026-05-27 E
═══════════════════════════════════════════════════════════════ */

/* 로고: brightness(0) → 검정, invert(1) → 흰색 (투명 배경 유지) */
.ll-header > .ll-logo img {
    filter: brightness(0) invert(1) !important;
}

/* 네비 링크: 크림 → 순백 */
.ll-header__pill .ll-nav a,
.ll-header__pill .ll-nav a::before {
    color: rgba(255, 255, 255, 0.75) !important;
}

.ll-header__pill .ll-nav a:hover::before {
    color: rgba(255, 255, 255, 0) !important;
}

.ll-header__pill .ll-nav a::after {
    color: #ffffff !important;
}

.ll-header__pill .ll-nav a:hover::after {
    color: #ffffff !important;
}

/* 호버 텍스트 짤림 수정: overflow:hidden → visible
   영문 대문자가 한글보다 넓을 때 좌우가 잘리는 현상 해결 */
.ll-header__pill .ll-nav a {
    overflow: visible !important;
}

/* CTA 버튼: 크림 → 흰색 */
.ll-header > .ll-nav__cta {
    background: #ffffff !important;
    color: #0c0c0c !important;
}

.ll-header > .ll-nav__cta:hover {
    background: #ffffff !important;
    color: #0c0c0c !important;
}

/* 햄버거 바도 흰색 */
.ll-header__pill .ll-menu-toggle span:not(.screen-reader-text) {
    background: #ffffff !important;
}

/* 모바일 메뉴 텍스트도 흰색 */
.ll-header__pill .ll-nav.is-open .ll-nav__list a::before {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ── 플로팅 배너: 초기 숨김, 로드블록 진입 시 표시 ── */
.ll-renewal-pill {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(20px) !important;
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 600ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ll-renewal-pill.is-shown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* ═══════════════════════════════════════════════════════════════
   패치 2026-05-27 F — 푸터 빅로고 / 포트폴리오 / FAQ / CTA 카카오 목업
═══════════════════════════════════════════════════════════════ */

/* ── 1. 푸터 빅로고: edge-to-edge + 선명도 개선 ── */
.ll-footer__biglogo {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 40px !important;
    padding: 0 !important;
    overflow: hidden !important;
    line-height: 0 !important;
    background: transparent !important;
}

.ll-footer__biglogo img {
    display: block !important;
    width: 100% !important;
    height: 180px !important;       /* 고정 높이로 여백 제거 */
    object-fit: cover !important;   /* 꽉 채우기 */
    object-position: center 45% !important;  /* 로고 텍스트 위치에 맞춤 */
    opacity: 1 !important;
    filter: none !important;
    image-rendering: -webkit-optimize-contrast;
}

/* ── 2. 포트폴리오 호버시 마퀴 멈추지 않음: JS에서 제거, CSS 확인 ── */
.ll-portfolio__rail:hover {
    animation-play-state: running !important;
}

/* ── 3. FAQ 배지 + 아코디언 ── */
.ll-faq__title .ll-eyebrow {
    margin-bottom: 12px;
}

/* <details> 기본 화살표 제거 */
.ll-faq details[data-faq-item] summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ll-faq details[data-faq-item] summary::-webkit-details-marker {
    display: none;
}

/* + / × 아이콘 */
.ll-faq details[data-faq-item] summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms ease;
}

.ll-faq details[data-faq-item][open] summary::after {
    content: '×';
    background: var(--ll-dark, #111);
    border-color: transparent;
    color: #fff;
    transform: rotate(90deg);
}

/* 답변 영역 */
.ll-faq__answer {
    overflow: hidden;
    animation: ll-faq-open 280ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ll-faq__answer p {
    padding: 4px 0 20px;
    margin: 0;
}

@keyframes ll-faq-open {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── 4. CTA 배너: 그리드 → copy | 카카오 목업 ── */
.ll-cta-banner__inner {
    grid-template-columns: 1fr auto !important;
    align-items: stretch !important;
    padding: 56px 56px 56px 64px !important;
    gap: 56px !important;
}

.ll-cta-banner__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.ll-cta-banner__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}

.ll-cta-banner__btns .ll-cta-banner__btn,
.ll-cta-banner__btns .ll-cta-banner__link {
    text-align: center;
}

/* ── 5. 카카오 목업 (전화기 프레임 + 채팅 UI) ── */
.ll-kakao-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ll-kakao-phone {
    width: 260px;
    height: 480px;
    background: #f5f0e8;
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 6px rgba(0, 0, 0, 0.55),
        0 32px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 상태바 */
.ll-kakao-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 4px;
    background: #f5c100;
    font-size: 9px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
}

/* 채팅방 헤더 */
.ll-kakao-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px;
    background: #f5c100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ll-kakao-avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #202527;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.ll-kakao-head__info strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.ll-kakao-head__info span {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.55);
}

/* 채팅 스크롤 영역 */
.ll-kakao-chat {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #b2c8d0;
    scrollbar-width: none;
}

.ll-kakao-chat::-webkit-scrollbar {
    display: none;
}

/* 말풍선 공통 */
.ll-kakao-msg {
    max-width: 72%;
    padding: 8px 11px;
    border-radius: 14px;
    font-size: 10px;
    line-height: 1.55;
    white-space: pre-line;
    word-break: break-word;
    opacity: 0;
    transform: translateY(8px);
    transition: none;
}

/* 등장 애니메이션 */
.ll-kakao-msg--in {
    animation: ll-msg-in 380ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ll-msg-in {
    from { opacity: 0; transform: translateY(10px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* 고객 말풍선 (좌측, 회색) */
.ll-kakao-msg--left {
    align-self: flex-start;
    background: #ffffff;
    color: #111;
    border-radius: 4px 14px 14px 14px;
}

/* 우리 말풍선 (우측, 노랑) */
.ll-kakao-msg--right {
    align-self: flex-end;
    background: #f5c100;
    color: #111;
    border-radius: 14px 4px 14px 14px;
}

/* 입력창 */
.ll-kakao-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    gap: 8px;
}

.ll-kakao-input span {
    flex: 1;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.35);
}

.ll-kakao-input button {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #f5c100;
    border: none;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    flex-shrink: 0;
}

/* ── 6. 문의폼 섹션 디자인 개선 ── */

/* 좌측 copy 영역 */
.ll-inquiry__copy h2 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 8px 0 16px;
}

.ll-inquiry__copy > p {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    margin: 0;
}

.ll-inquiry__copy > span {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 28px;
}

/* 런치 버튼 (견적 시작) */
.ll-inquiry__launch {
    border-radius: 20px !important;
    padding: 20px 24px !important;
    gap: 8px !important;
}

.ll-inquiry__launch span {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

.ll-inquiry__launch strong {
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
}

/* 우측 미리보기 카드 */
.ll-inquiry-preview {
    border-radius: 28px !important;
    padding: 40px !important;
    background: #202527 !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 260px !important;
}

.ll-inquiry-preview > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.ll-inquiry-preview h3 {
    font-size: 26px !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.3 !important;
    color: #fff !important;
    margin: 0 0 12px !important;
}

.ll-inquiry-preview p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
}

/* 모바일 (Patch F 기존 유지) */
@media (max-width: 900px) {
    .ll-cta-banner__inner {
        grid-template-columns: 1fr !important;
    }

    .ll-kakao-wrap {
        display: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   PATCH G (2026-05-27)
   · CTA 전화기 목업 섹션 위 오버플로우
   · 전화기·카카오톡 목업 품질 개선
   · 푸터 레이아웃 재구성 (로고+네비 / 사업자정보+저작권)
   · ll-float-inquiry 우측 고정 문의 버튼
   · 문의폼 step-nav 원형 단계 표시 (CodePen 스타일)
   ══════════════════════════════════════════════════════════════ */

/* ── 1. CTA 섹션: 전화기 목업 섹션 위로 오버플로우 ── */
.ll-cta-banner {
    overflow: visible !important;      /* 전화기가 위로 넘어갈 수 있게 */
    padding-top: 64px !important;
    padding-bottom: 72px !important;
    position: relative !important;
}

.ll-cta-banner__inner {
    grid-template-columns: 1fr 280px !important;
    align-items: flex-end !important;   /* 텍스트·버튼을 섹션 바닥에 정렬 */
    gap: 60px !important;
}

/* 전화기 목업을 섹션 상단 경계 위로 80px 들어올리기 */
.ll-kakao-wrap {
    align-self: flex-end !important;
    transform: translateY(-80px) !important;
    margin-bottom: -80px !important;    /* height compensation — 섹션 높이 유지 */
    display: flex !important;
    justify-content: center !important;
    z-index: 2 !important;
    position: relative !important;
}

/* ── 2. 전화기 목업 품질 개선 (9:19.5 아이폰 비율, 다이나믹 아일랜드) ── */
.ll-kakao-phone {
    width: 270px !important;
    height: 560px !important;
    border-radius: 46px !important;
    background: #151515 !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    /* 다층 그림자: 프레임 테두리 + 떠있는 느낌 */
    box-shadow:
        0 0 0 2px #2c2c2c,
        0 0 0 3.5px rgba(255, 255, 255, 0.05),
        0 32px 90px -16px rgba(0, 0, 0, 0.65),
        0 10px 36px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

/* 우측 물리 버튼 (전원 버튼) */
.ll-kakao-phone::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 108px;
    width: 3px;
    height: 64px;
    background: #242424;
    border-radius: 0 3px 3px 0;
    pointer-events: none;
}

/* 좌측 물리 버튼 (음량 버튼 2개) */
.ll-kakao-phone::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 88px;
    width: 3px;
    height: 34px;
    background: #242424;
    border-radius: 3px 0 0 3px;
    /* 두 번째 버튼 */
    box-shadow: 0 50px 0 #242424;
    pointer-events: none;
}

/* 노치 영역 (상태바) — 다이나믹 아일랜드 스타일 */
.ll-kakao-status {
    flex-shrink: 0 !important;
    background: #000 !important;
    padding: 10px 20px 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    overflow: visible !important;
}

/* 다이나믹 아일랜드 pill */
.ll-kakao-status::before {
    content: '' !important;
    position: absolute !important;
    top: 7px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 88px !important;
    height: 24px !important;
    background: #000 !important;
    border-radius: 16px !important;
    box-shadow: 0 0 0 1px #282828 !important;
    z-index: 1 !important;
}

.ll-kakao-status span {
    font-size: 9px !important;
    font-weight: 600 !important;
    color: #fff !important;
    letter-spacing: 0.02em !important;
    position: relative !important;
    z-index: 2 !important;
}

/* 카카오 앱 헤더 — 실제 KakaoTalk 색상 (밝은 노랑) */
.ll-kakao-head {
    background: #fae100 !important;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}

/* 프로필 아바타 — 둥근 사각형 */
.ll-kakao-avatar {
    width: 36px !important;
    height: 36px !important;
    background: #2c1810 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    letter-spacing: 0 !important;
}

.ll-kakao-head__info strong {
    display: block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: rgba(0, 0, 0, 0.88) !important;
    line-height: 1.3 !important;
}

.ll-kakao-head__info span {
    font-size: 9px !important;
    color: rgba(0, 0, 0, 0.5) !important;
    line-height: 1.2 !important;
}

/* 채팅 배경 — 카카오 기본 채팅 배경색 */
.ll-kakao-chat {
    flex: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 14px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    background: #b2c7d9 !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.ll-kakao-chat::-webkit-scrollbar { display: none; }

/* 메시지 행 (아바타 + 말풍선 컨테이너) */
.ll-kakao-row {
    display: flex !important;
    align-items: flex-end !important;
    gap: 6px !important;
}

.ll-kakao-row--right {
    justify-content: flex-end !important;
}

/* 수신 메시지 아바타 (작은 원형) */
.ll-kakao-row__avatar {
    width: 24px !important;
    height: 24px !important;
    border-radius: 8px !important;
    background: #555 !important;
    color: #fff !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    align-self: flex-start !important;
    margin-top: 2px !important;
}

/* 말풍선 공통 */
.ll-kakao-msg {
    max-width: 72% !important;
    padding: 7px 10px !important;
    font-size: 10.5px !important;
    line-height: 1.55 !important;
    white-space: pre-line !important;
    word-break: break-word !important;
    opacity: 0 !important;
}

/* 수신 말풍선 (흰색) */
.ll-kakao-msg--left {
    background: #ffffff !important;
    color: #111 !important;
    border-radius: 2px 12px 12px 12px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* 발신 말풍선 (카카오 노랑) */
.ll-kakao-msg--right {
    background: #fae100 !important;
    color: #111 !important;
    border-radius: 12px 2px 12px 12px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
}

/* 입력창 + 홈 인디케이터 */
.ll-kakao-input {
    background: #fff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 8px 12px 18px !important;    /* 하단 18px = 홈 인디케이터 공간 */
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

/* 홈 인디케이터 바 */
.ll-kakao-input::after {
    content: '' !important;
    position: absolute !important;
    bottom: 5px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 4px !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 4px !important;
}

.ll-kakao-input span {
    flex: 1 !important;
    font-size: 10px !important;
    color: rgba(0, 0, 0, 0.32) !important;
}

.ll-kakao-input button {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: #fae100 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #111 !important;
    flex-shrink: 0 !important;
    cursor: default !important;
}

/* ── 3. 푸터 레이아웃 재구성 ── */

/* 기존 3열 그리드 관련 요소 숨기기 */
.ll-footer__grid,
.ll-footer__brand,
.ll-footer__contact,
.ll-footer__nav > h2 {
    display: none !important;
}

.ll-footer {
    background: #f8f8f8 !important;
    padding: 0 !important;
}

/* 상단 행: 로고 + 수평 네비 */
.ll-footer__top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 32px 60px !important;
}

.ll-footer__top .ll-footer__logo {
    display: block !important;
    line-height: 1 !important;
}

.ll-footer__top .ll-footer__logo img {
    height: 26px !important;
    width: auto !important;
    display: block !important;
    filter: none !important;
    opacity: 1 !important;
}

/* 수평 네비 리스트 */
.ll-footer__top .ll-footer__list {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ll-footer__top .ll-footer__list a {
    font-size: 13px !important;
    color: rgba(0, 0, 0, 0.52) !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

.ll-footer__top .ll-footer__list a:hover {
    color: #0c0c0c !important;
}

/* 구분선 */
.ll-footer__divider {
    border: none !important;
    border-top: 1px solid #e8e8e8 !important;
    margin: 0 60px !important;
}

/* 하단 행: 사업자 정보 + 저작권 */
.ll-footer__bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 18px 60px 24px !important;
}

.ll-footer__biz {
    font-size: 11px !important;
    color: rgba(0, 0, 0, 0.36) !important;
    line-height: 1.8 !important;
    margin: 0 !important;
}

.ll-footer__biz a {
    color: inherit !important;
    text-decoration: none !important;
}

.ll-footer__biz a:hover {
    color: rgba(0, 0, 0, 0.65) !important;
    text-decoration: underline !important;
}

.ll-footer__copy {
    font-size: 11px !important;
    color: rgba(0, 0, 0, 0.36) !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .ll-footer__top {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        padding: 28px 24px !important;
    }

    .ll-footer__top .ll-footer__list {
        flex-wrap: wrap !important;
        gap: 14px !important;
    }

    .ll-footer__divider {
        margin: 0 24px !important;
    }

    .ll-footer__bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 16px 24px 20px !important;
    }
}

/* ── 4. ll-float-inquiry 우측 고정 문의 버튼 ── */
.ll-float-inquiry {
    position: fixed !important;
    right: 24px !important;
    bottom: 180px !important;   /* ll-social-fab 위 */
    z-index: 300 !important;
    /* 초기: 숨김 + 우측으로 밀림 */
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(20px) !important;
    transition: opacity 500ms ease, transform 500ms ease !important;
    /* 세로 pill 스타일 */
    background: #0c0c0c !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 18px 13px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.14) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
}

.ll-float-inquiry.is-shown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
}

.ll-float-inquiry__icon {
    writing-mode: horizontal-tb !important;
    display: block !important;
}

.ll-float-inquiry span {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
}

.ll-float-inquiry:hover {
    background: #222 !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

/* 모바일에선 이미 소셜 FAB이 있으므로 숨김 */
@media (max-width: 900px) {
    .ll-float-inquiry {
        display: none !important;
    }
}

/* ── 5. 문의폼 step-nav — 원형 단계 표시 (CodePen 스타일) ── */

/* 단계 컨테이너 */
.ll-step-nav {
    display: flex !important;
    align-items: flex-start !important;
    position: relative !important;
    margin-bottom: 36px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    gap: 0 !important;
}

/* 단계 연결선 */
.ll-step-nav::before {
    content: '' !important;
    position: absolute !important;
    top: 22px !important;
    left: 22px !important;
    right: 22px !important;
    height: 2px !important;
    background: #e8ecf4 !important;
    z-index: 0 !important;
}

/* 개별 단계 버튼 */
.ll-step-nav button {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
    border: none !important;
    background: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    /* 텍스트 원본 숨기기 */
    font-size: 0 !important;
    color: transparent !important;
}

/* 원형 번호 */
.ll-step-nav button::before {
    content: attr(data-step-pill) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #e8ecf4 !important;
    color: #9fa3b1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s !important;
    flex-shrink: 0 !important;
}

/* 단계 라벨 */
.ll-step-nav button::after {
    content: attr(data-step-label) !important;
    font-size: 11px !important;
    color: #b0b4c4 !important;
    font-weight: 500 !important;
    transition: color 0.3s !important;
    line-height: 1 !important;
}

/* 현재 활성 단계 */
.ll-step-nav button.is-active::before {
    background: #5d5dff !important;
    color: #fff !important;
    box-shadow: 0 0 0 5px rgba(93, 93, 255, 0.14) !important;
}

.ll-step-nav button.is-active::after {
    color: #5d5dff !important;
    font-weight: 600 !important;
}

/* 완료된 단계 */
.ll-step-nav button.is-done::before {
    content: '✓' !important;
    background: #10b981 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.ll-step-nav button.is-done::after {
    color: #10b981 !important;
}

/* Kakao row 정렬 — 아바타와 말풍선을 모두 상단 정렬 */
.ll-kakao-row {
    align-items: flex-start !important;   /* flex-end → flex-start */
}

.ll-kakao-row__avatar {
    align-self: flex-start !important;
    margin-top: 0 !important;
}

/* row 내부 말풍선 align-self 초기화 (Patch F 덮어쓰기) */
.ll-kakao-row .ll-kakao-msg--left {
    align-self: auto !important;
}

.ll-kakao-row .ll-kakao-msg--right {
    align-self: auto !important;
}

/* ══════════════════════════════════════════════════════════════
   PATCH H (2026-05-27)
   · ll-float-inquiry 제거 (숨김)
   · ll-social-fab 히어로 후 등장 (pill과 동시)
   · step-nav 원래 수평바 스타일 복원 (Patch G 원형 제거)
   · inquiry 섹션 인트로 레이아웃 정리
   ══════════════════════════════════════════════════════════════ */

/* ── 1. ll-float-inquiry 완전 숨김 ── */
.ll-float-inquiry {
    display: none !important;
}

/* ── 2. ll-social-fab: 히어로 중에는 숨김, is-shown 후 등장 ── */
.ll-social-fab {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(12px) !important;
    transition: opacity 500ms ease, transform 500ms ease !important;
}

.ll-social-fab.is-shown {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* ── 3. step-nav 원래 수평바 스타일 복원 (Patch G 원형 덮어쓰기) ── */

/* 컨테이너 */
.ll-step-nav {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 0 0 28px !important;
    background: linear-gradient(180deg, rgba(250, 250, 248, 1) 82%, rgba(250, 250, 248, 0)) !important;
    margin-bottom: 4px !important;
    position: static !important;
    align-items: flex-start !important;
}

/* 연결선 제거 */
.ll-step-nav::before {
    content: none !important;
    display: none !important;
}

/* 버튼 — 원래 수평 탭 스타일 */
.ll-step-nav button {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    position: relative !important;
    min-height: auto !important;
    padding: 12px 14px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #aaa !important;
    font-size: 11px !important;          /* 원래 텍스트 크기 복원 */
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: color 220ms ease !important;
    width: auto !important;
    height: auto !important;
}

/* 상단 진행 바 복원 */
.ll-step-nav button::before {
    content: "" !important;              /* 빈 콘텐츠 (라인) */
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    margin-bottom: 12px !important;
    background: #e4e4df !important;
    border-radius: 2px !important;
    transition: background 280ms ease !important;
    flex-shrink: 0 !important;
    /* 원형 스타일 초기화 */
    border: none !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    align-items: initial !important;
    justify-content: initial !important;
}

/* 라벨 ::after 제거 */
.ll-step-nav button::after {
    content: none !important;
    display: none !important;
}

/* 활성 버튼 */
.ll-step-nav button.is-active {
    background: transparent !important;
    color: #202527 !important;
    box-shadow: none !important;
}

.ll-step-nav button.is-active::before {
    background: #202527 !important;
    box-shadow: none !important;
}

/* 완료 버튼 */
.ll-step-nav button.is-done {
    background: transparent !important;
    color: rgba(32, 37, 39, 0.5) !important;
}

.ll-step-nav button.is-done::before {
    content: "" !important;              /* "✓" 제거, 라인으로 복원 */
    background: rgba(32, 37, 39, 0.3) !important;
    font-size: 0 !important;
    color: transparent !important;
}

/* ── 4. inquiry 섹션 인트로 레이아웃 ── */

/* 기존 그리드 숨김 */
.ll-inquiry__grid {
    display: none !important;
}

/* 새 인트로 행: 심플 단열 레이아웃 */
.ll-inquiry__intro-row {
    padding-top: 80px !important;
    padding-bottom: 48px !important;
    display: block !important;
}

.ll-inquiry__copy {
    max-width: 560px !important;
}

/* inquiry copy 내 eyebrow */
.ll-inquiry__copy .ll-eyebrow--dark {
    margin-bottom: 12px !important;
}

.ll-inquiry__copy h2 {
    font-size: 56px !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.1 !important;
    margin: 0 0 16px !important;
    color: #0c0c0c !important;
}

.ll-inquiry__copy > span {
    display: block !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 32px !important;
}

/* 문의 열기 버튼 */
.ll-inquiry__open-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 16px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
}

@media (max-width: 768px) {
    .ll-inquiry__copy h2 {
        font-size: 36px !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   PATCH I (2026-05-28)
   · 문의섹션 내부 미니견적서 + 스텝폼 노출
   · CTA 스마트폰/카카오 목업 비율 및 버튼 정렬 개선
   · 푸터 로고 제거, 실제 메뉴만 왼쪽 정렬
   ══════════════════════════════════════════════════════════════ */

/* 문의섹션: 인트로 아래에 실제 작성 가능한 견적폼을 배치합니다. */
.ll-inquiry {
    padding-bottom: 112px !important;
}

.ll-inquiry__intro-row {
    padding-bottom: 28px !important;
}

.ll-inquiry__inline-shell {
    display: grid !important;
    grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr) !important;
    gap: 28px !important;
    align-items: start !important;
    padding-bottom: 48px !important;
}

.ll-inquiry__inline-heading {
    position: sticky !important;
    top: 104px !important;
    padding: 28px !important;
    border: 1px solid rgba(32, 37, 39, 0.1) !important;
    border-radius: 28px !important;
    background: #f4f4f1 !important;
}

.ll-inquiry__inline-heading span {
    display: inline-flex !important;
    margin-bottom: 14px !important;
    color: var(--ll-lime, #d7ff2f) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
}

.ll-inquiry__inline-heading h3 {
    margin: 0 0 12px !important;
    color: #202527 !important;
    font-size: clamp(28px, 3vw, 44px) !important;
    font-weight: 900 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.04em !important;
}

.ll-inquiry__inline-heading p,
.ll-inquiry__inline-loading {
    margin: 0 !important;
    color: rgba(32, 37, 39, 0.58) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

.ll-inquiry__inline-form {
    min-width: 0 !important;
}

.ll-inquiry__inline-form .ll-form-panel--inline {
    overflow: hidden !important;
    border: 1px solid rgba(32, 37, 39, 0.1) !important;
    border-radius: 32px !important;
    background: #f7f7f4 !important;
    box-shadow: 0 28px 90px rgba(32, 37, 39, 0.08) !important;
}

.ll-inquiry__inline-form .ll-estimator-layout {
    grid-template-columns: minmax(240px, 310px) minmax(0, 1fr) !important;
}

.ll-inquiry__inline-form .ll-estimator-side {
    padding: 28px !important;
    border-radius: 32px 0 0 32px !important;
    background: #202527 !important;
}

.ll-inquiry__inline-form .ll-modal-head h2 {
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 0.95 !important;
}

.ll-inquiry__inline-form .ll-estimate-card {
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.ll-inquiry__inline-form .ll-estimator-workspace {
    max-height: none !important;
    padding: 28px !important;
    overflow: visible !important;
}

.ll-inquiry__inline-form .ll-service-select {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* CTA: 레퍼런스처럼 넓은 가로 배너와 우측 오버플로우 목업의 비율을 맞춥니다. */
.ll-cta-banner {
    overflow: visible !important;
    padding: 112px 0 92px !important;
    background: #f3f3f1 !important;
}

.ll-cta-banner__inner {
    position: relative !important;
    min-height: 356px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr) !important;
    align-items: center !important;
    gap: 40px !important;
    padding: 64px 72px !important;
    border-radius: 8px !important;
    background: #747d98 !important;
    color: #fff !important;
}

.ll-cta-banner__copy {
    max-width: 460px !important;
    justify-content: center !important;
}

.ll-cta-banner h2 {
    margin: 0 0 18px !important;
    color: #fff !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
}

.ll-cta-banner span {
    max-width: 430px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.ll-cta-banner__btns {
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 28px !important;
}

.ll-cta-banner__btn,
.ll-cta-banner__link {
    display: inline-flex !important;
    width: auto !important;
    min-width: 116px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
    border-radius: 7px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.ll-cta-banner__btn {
    border: 0 !important;
    background: #fff !important;
    color: #747d98 !important;
}

.ll-cta-banner__link {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
    color: #fff !important;
}

.ll-kakao-wrap {
    position: absolute !important;
    right: 48px !important;
    top: -82px !important;
    bottom: -8px !important;
    width: min(410px, 34vw) !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    margin: 0 !important;
    transform: none !important;
}

.ll-kakao-phone {
    width: 100% !important;
    height: auto !important;
    min-height: 492px !important;
    border: 2px solid #b9c0d0 !important;
    border-radius: 8px !important;
    background: #eef1f6 !important;
    box-shadow: none !important;
}

.ll-kakao-phone::before,
.ll-kakao-phone::after,
.ll-kakao-status::before,
.ll-kakao-input::after {
    display: none !important;
}

.ll-kakao-status,
.ll-kakao-head {
    background: #eef1f6 !important;
    color: #68728f !important;
}

.ll-kakao-chat {
    background: #eef1f6 !important;
    padding: 34px 28px !important;
}

.ll-kakao-avatar,
.ll-kakao-row__avatar {
    background: #747d98 !important;
}

.ll-kakao-msg {
    max-width: 78% !important;
    font-size: 12px !important;
}

.ll-kakao-msg--left {
    background: #fff !important;
    color: #202527 !important;
}

.ll-kakao-msg--right {
    background: #d7ff2f !important;
    color: #202527 !important;
}

.ll-kakao-input {
    background: #fff !important;
    padding: 14px 18px !important;
}

/* 푸터: 작은 로고와 워터마크 없이 메뉴/정보를 왼쪽 흐름으로 정리합니다. */
.ll-footer {
    background: #f8f8f6 !important;
    padding: 0 !important;
}

.ll-footer::after,
.ll-footer__logo,
.ll-footer__biglogo {
    display: none !important;
}

.ll-footer__top,
.ll-footer__bottom {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.ll-footer__top {
    justify-content: flex-start !important;
    padding-top: 34px !important;
    padding-bottom: 24px !important;
}

.ll-footer__top .ll-footer__list {
    justify-content: flex-start !important;
    gap: 26px !important;
}

.ll-footer__bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding-top: 18px !important;
    padding-bottom: 34px !important;
}

.ll-footer__biz,
.ll-footer__copy {
    white-space: normal !important;
    text-align: left !important;
}

@media (max-width: 980px) {
    .ll-inquiry__inline-shell,
    .ll-inquiry__inline-form .ll-estimator-layout {
        grid-template-columns: 1fr !important;
    }

    .ll-inquiry__inline-heading {
        position: static !important;
    }

    .ll-inquiry__inline-form .ll-estimator-side {
        border-radius: 32px 32px 0 0 !important;
    }

    .ll-cta-banner__inner {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 44px 28px !important;
    }

    .ll-kakao-wrap {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 420px !important;
        margin: 24px auto -12px !important;
    }

    .ll-kakao-phone {
        min-height: 430px !important;
    }
}

@media (max-width: 720px) {
    .ll-inquiry__inline-shell,
    .ll-footer__top,
    .ll-footer__bottom {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .ll-inquiry__inline-form .ll-service-select {
        grid-template-columns: 1fr !important;
    }

    .ll-cta-banner__btns {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .ll-cta-banner__btn,
    .ll-cta-banner__link {
        width: 100% !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   PATCH J (2026-05-28)
   · CTA는 사이트 톤앤매너로 복귀하고 레퍼런스는 비율만 반영
   · 우측 목업은 실제 스마트폰 형태로 재정리
   · 푸터 빅로고 복구
   ══════════════════════════════════════════════════════════════ */

.ll-cta-banner {
    padding: 116px 0 104px !important;
    background: #f5f5f2 !important;
}

.ll-cta-banner__inner {
    min-height: 390px !important;
    grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr) !important;
    align-items: center !important;
    gap: 48px !important;
    overflow: visible !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 16% 0%, rgba(215, 255, 47, 0.18), transparent 34%),
        linear-gradient(135deg, #202527 0%, #151819 100%) !important;
    color: #fff !important;
    box-shadow: 0 34px 100px rgba(32, 37, 39, 0.16) !important;
}

.ll-cta-banner .ll-eyebrow {
    color: var(--ll-lime, #d7ff2f) !important;
}

.ll-cta-banner h2 {
    max-width: 520px !important;
    color: #fff !important;
}

.ll-cta-banner span {
    color: rgba(255, 255, 255, 0.68) !important;
}

.ll-cta-banner__btn,
.ll-cta-banner__link {
    min-width: 126px !important;
    height: 46px !important;
    border-radius: 999px !important;
}

.ll-cta-banner__btn {
    background: var(--ll-lime, #d7ff2f) !important;
    color: #202527 !important;
    box-shadow: 0 16px 36px rgba(215, 255, 47, 0.18) !important;
}

.ll-cta-banner__link {
    border-color: rgba(255, 255, 255, 0.22) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #fff !important;
}

.ll-kakao-wrap {
    right: clamp(28px, 5vw, 70px) !important;
    top: -70px !important;
    bottom: -42px !important;
    width: min(330px, 31vw) !important;
    align-items: center !important;
}

.ll-kakao-phone {
    width: 100% !important;
    min-height: 610px !important;
    height: 100% !important;
    max-height: 680px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    border: 0 !important;
    border-radius: 46px !important;
    background: #0d0f10 !important;
    box-shadow:
        0 0 0 2px #303436,
        0 0 0 9px #101214,
        0 38px 100px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.ll-kakao-phone::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    top: 14px !important;
    left: 50% !important;
    width: 96px !important;
    height: 26px !important;
    border-radius: 999px !important;
    background: #050606 !important;
    transform: translateX(-50%) !important;
    z-index: 5 !important;
}

.ll-kakao-phone::after {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    right: -4px !important;
    top: 132px !important;
    width: 4px !important;
    height: 72px !important;
    border-radius: 0 4px 4px 0 !important;
    background: #272b2d !important;
}

.ll-kakao-status {
    flex-shrink: 0 !important;
    padding: 14px 22px 8px !important;
    background: #111516 !important;
    color: #fff !important;
}

.ll-kakao-head {
    flex-shrink: 0 !important;
    padding: 18px 18px 14px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #fae100 !important;
}

.ll-kakao-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    background: #202527 !important;
}

.ll-kakao-head__info strong {
    color: #202527 !important;
    font-size: 13px !important;
}

.ll-kakao-head__info span {
    color: rgba(32, 37, 39, 0.62) !important;
    font-size: 10px !important;
}

.ll-kakao-chat {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 18px 14px !important;
    gap: 10px !important;
    background: #b7c9d6 !important;
}

.ll-kakao-row {
    gap: 7px !important;
}

.ll-kakao-row__avatar {
    width: 26px !important;
    height: 26px !important;
    border-radius: 9px !important;
    background: #202527 !important;
}

.ll-kakao-msg {
    max-width: 76% !important;
    padding: 9px 11px !important;
    font-size: 11px !important;
    line-height: 1.48 !important;
}

.ll-kakao-msg--left {
    border-radius: 4px 14px 14px 14px !important;
    background: #fff !important;
    color: #202527 !important;
}

.ll-kakao-msg--right {
    border-radius: 14px 4px 14px 14px !important;
    background: #fae100 !important;
    color: #202527 !important;
}

.ll-kakao-input {
    flex-shrink: 0 !important;
    padding: 12px 14px 24px !important;
    background: #fff !important;
}

.ll-kakao-input::after {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    bottom: 8px !important;
    left: 50% !important;
    width: 110px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.18) !important;
    transform: translateX(-50%) !important;
}

.ll-kakao-input button {
    background: var(--ll-lime, #d7ff2f) !important;
    color: #202527 !important;
}

.ll-footer__biglogo {
    display: block !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 8px 60px 0 !important;
    overflow: hidden !important;
}

.ll-footer__biglogo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 0.045 !important;
    filter: none !important;
}

@media (max-width: 980px) {
    .ll-kakao-wrap {
        width: min(330px, 100%) !important;
    }

    .ll-kakao-phone {
        min-height: 560px !important;
        max-height: none !important;
    }
}

@media (max-width: 720px) {
    .ll-footer__biglogo {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   PATCH K (2026-05-28)
   · 푸터 빅로고를 고해상도 블랙 이미지로 화면 폭 가득 표시
   · CTA 스마트폰은 박스 하단 기준 정렬, 위로만 오버플로우
   · 카카오 목업과 문의폼 UX를 실제 상담/견적 경험에 가깝게 보정
   ══════════════════════════════════════════════════════════════ */

.ll-portfolio__head h2 {
    max-width: 760px !important;
}

.ll-portfolio__head h2 span {
    white-space: nowrap !important;
}

.ll-cta-banner {
    padding: 132px 0 108px !important;
}

.ll-cta-banner__inner {
    min-height: 376px !important;
    padding: 66px 72px !important;
}

.ll-kakao-wrap {
    top: -104px !important;
    bottom: 0 !important;
    right: clamp(32px, 5.2vw, 76px) !important;
    width: min(342px, 31vw) !important;
    align-items: stretch !important;
}

.ll-kakao-phone {
    height: calc(100% + 104px) !important;
    min-height: 0 !important;
    max-height: none !important;
    align-self: flex-end !important;
    border-radius: 44px !important;
    background: #101314 !important;
}

.ll-kakao-status {
    padding: 16px 22px 10px !important;
}

.ll-kakao-status span:first-child {
    font-size: 11px !important;
}

.ll-kakao-head {
    padding: 16px 18px 14px !important;
}

.ll-kakao-avatar {
    position: relative !important;
    overflow: hidden !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 15px !important;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.35), transparent 18%),
        linear-gradient(135deg, #202527 0%, #050606 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    font-size: 11px !important;
    letter-spacing: -0.04em !important;
}

.ll-kakao-chat {
    padding: 18px 14px 16px !important;
    gap: 11px !important;
}

.ll-kakao-row {
    align-items: flex-end !important;
}

.ll-kakao-row__avatar {
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 42% 28%, #f5d6bf 0 18%, transparent 19%),
        radial-gradient(circle at 50% 56%, #f0c4a5 0 27%, transparent 28%),
        linear-gradient(145deg, #2b3133, #111516) !important;
    color: transparent !important;
}

.ll-kakao-msg {
    padding: 10px 12px !important;
    font-size: 11.5px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.01em !important;
}

.ll-kakao-time {
    flex: 0 0 auto !important;
    margin: 0 0 2px -1px !important;
    color: rgba(32, 37, 39, 0.46) !important;
    font-size: 8px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.ll-kakao-time--right {
    margin: 0 -1px 2px 0 !important;
    text-align: right !important;
}

/* 문의폼 UX: 좌측은 미니견적서, 우측은 입력 작업대처럼 보이게 정리합니다. */
.ll-inquiry__inline-shell {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) !important;
    gap: 24px !important;
}

.ll-inquiry__inline-heading {
    border-radius: 30px !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(215, 255, 47, 0.22), transparent 32%),
        #202527 !important;
    color: #fff !important;
    box-shadow: 0 22px 70px rgba(32, 37, 39, 0.12) !important;
}

.ll-inquiry__inline-heading h3 {
    color: #fff !important;
}

.ll-inquiry__inline-heading p {
    color: rgba(255, 255, 255, 0.62) !important;
}

.ll-inquiry__inline-form .ll-form-panel--inline {
    border-radius: 34px !important;
    background: #f2f2ee !important;
    box-shadow: 0 24px 90px rgba(32, 37, 39, 0.1) !important;
}

.ll-inquiry__inline-form .ll-estimator-layout {
    grid-template-columns: minmax(250px, 330px) minmax(0, 1fr) !important;
}

.ll-inquiry__inline-form .ll-estimator-side {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 30px !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(215, 255, 47, 0.18), transparent 38%),
        #202527 !important;
}

.ll-inquiry__inline-form .ll-modal-head p {
    color: var(--ll-lime, #d7ff2f) !important;
}

.ll-inquiry__inline-form .ll-modal-head h2 {
    margin-top: 6px !important;
    font-size: clamp(38px, 4.6vw, 68px) !important;
    letter-spacing: -0.055em !important;
}

.ll-inquiry__inline-form .ll-estimate-card {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 26px !important;
    background: rgba(255, 255, 255, 0.075) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.ll-inquiry__inline-form .ll-estimate-card strong {
    font-size: 30px !important;
}

.ll-inquiry__inline-form .ll-estimate-card li {
    gap: 12px !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.ll-inquiry__inline-form .ll-estimator-note {
    margin-top: auto !important;
    border-radius: 22px !important;
    background: rgba(215, 255, 47, 0.1) !important;
}

.ll-inquiry__inline-form .ll-estimator-workspace {
    padding: 30px !important;
}

.ll-inquiry__inline-form .ll-step-nav {
    position: sticky !important;
    top: 72px !important;
    z-index: 3 !important;
    margin: -30px -30px 26px !important;
    padding: 22px 30px 18px !important;
    border-bottom: 1px solid rgba(32, 37, 39, 0.08) !important;
    background: rgba(242, 242, 238, 0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.ll-inquiry__inline-form .ll-step-nav button {
    font-size: 12px !important;
}

.ll-inquiry__inline-form .ll-step-head {
    margin-bottom: 20px !important;
}

.ll-inquiry__inline-form .ll-step-head h3 {
    max-width: 520px !important;
    font-size: clamp(28px, 3vw, 42px) !important;
    line-height: 1.04 !important;
}

.ll-inquiry__inline-form .ll-service-option {
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 22px !important;
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(32, 37, 39, 0.04) !important;
}

.ll-inquiry__inline-form .ll-service-option.is-selected {
    border-color: rgba(215, 255, 47, 0.85) !important;
    background: linear-gradient(180deg, #fff 0%, #f8ffe5 100%) !important;
    box-shadow: 0 16px 36px rgba(32, 37, 39, 0.08) !important;
}

.ll-inquiry__inline-form .ll-option-list label {
    border-radius: 14px !important;
    background: rgba(32, 37, 39, 0.035) !important;
}

.ll-inquiry__inline-form .ll-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.ll-inquiry__inline-form .ll-form textarea {
    border-color: rgba(32, 37, 39, 0.08) !important;
    background: #fff !important;
}

.ll-inquiry__inline-form .ll-step-actions {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 2 !important;
    margin: 24px -30px -30px !important;
    padding: 18px 30px 30px !important;
    border-top: 1px solid rgba(32, 37, 39, 0.08) !important;
    background: linear-gradient(180deg, rgba(242, 242, 238, 0), rgba(242, 242, 238, 0.96) 24%) !important;
}

.ll-inquiry__inline-form .ll-step-actions .ll-btn {
    min-height: 48px !important;
    padding-inline: 24px !important;
}

.ll-footer {
    overflow: hidden !important;
}

.ll-footer__biglogo {
    display: block !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 6px 0 -18px 50% !important;
    padding: 0 !important;
    transform: translateX(-50%) !important;
}

.ll-footer__biglogo img {
    width: 100vw !important;
    max-width: none !important;
    height: auto !important;
    opacity: 1 !important;
    filter: grayscale(1) contrast(1.2) brightness(0) !important;
    image-rendering: auto !important;
}

@media (max-width: 980px) {
    .ll-kakao-wrap {
        top: auto !important;
        bottom: auto !important;
    }

    .ll-kakao-phone {
        height: auto !important;
        min-height: 560px !important;
    }

    .ll-inquiry__inline-form .ll-step-nav,
    .ll-inquiry__inline-form .ll-step-actions {
        position: static !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   PATCH L (2026-05-28)
   · Firecrawl 대체 로컬 캡처 진단 후 최종 시각 품질 보정
   · 히어로 공백감 축소, 섹션 밀도 개선, CTA/문의폼/푸터 안정화
   ══════════════════════════════════════════════════════════════ */

/* 히어로 스크롤 시퀀스가 콘텐츠 공백처럼 보이지 않도록 길이를 줄입니다. */
.ll-hero-sequence {
    height: 180vh !important;
    min-height: 180vh !important;
}

.ll-vel-text {
    margin-top: 0 !important;
}

/* 중간 섹션의 타이포와 카드 밀도를 화면 크기에 맞게 끌어올립니다. */
.ll-roadblocks,
.ll-portfolio,
.ll-pricing,
.ll-faq,
.ll-inquiry {
    padding-top: clamp(96px, 10vw, 150px) !important;
    padding-bottom: clamp(96px, 10vw, 150px) !important;
}

.ll-roadblocks__intro h2,
.ll-portfolio__head h2,
.ll-section-title h2,
.ll-faq__title h2,
.ll-inquiry__copy h2 {
    font-size: clamp(54px, 7vw, 104px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.055em !important;
}

.ll-portfolio__head {
    align-items: end !important;
    margin-bottom: 42px !important;
}

.ll-portfolio__rail figure {
    min-width: clamp(300px, 27vw, 430px) !important;
    height: clamp(390px, 38vw, 560px) !important;
    background: #ecece8 !important;
}

.ll-portfolio__rail img {
    opacity: 1 !important;
    filter: none !important;
}

.ll-plan-card {
    min-height: 430px !important;
}

.ll-faq__grid {
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr) !important;
    gap: clamp(48px, 7vw, 110px) !important;
}

/* 문의폼은 외부 설명 카드 + 폼 내부 견적 카드가 중복되어 보이지 않게 2열 제품형 UI로 정리합니다. */
.ll-inquiry__inline-shell {
    display: block !important;
    max-width: 1200px !important;
}

.ll-inquiry__inline-heading {
    display: none !important;
}

.ll-inquiry__inline-form .ll-form-panel--inline {
    border-radius: 38px !important;
    overflow: hidden !important;
}

.ll-inquiry__inline-form .ll-estimator-layout {
    grid-template-columns: minmax(320px, 0.34fr) minmax(0, 0.66fr) !important;
    min-height: 760px !important;
}

.ll-inquiry__inline-form .ll-estimator-side {
    padding: 38px !important;
}

.ll-inquiry__inline-form .ll-estimator-workspace {
    padding: 38px !important;
    background: #f8f8f4 !important;
}

.ll-inquiry__inline-form .ll-service-select {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.ll-inquiry__inline-form .ll-service-option {
    min-height: 132px !important;
}

.ll-inquiry__inline-form .ll-service-option > label {
    align-items: flex-start !important;
}

.ll-inquiry__inline-form .ll-step-actions {
    justify-content: flex-end !important;
}

/* CTA: 스마트폰은 CTA 박스 하단에 붙고 위로만 돌출되게 고정합니다. */
.ll-cta-banner {
    padding: 150px 0 116px !important;
}

.ll-cta-banner__inner {
    min-height: 420px !important;
    grid-template-columns: minmax(0, 1fr) 360px !important;
    padding: 70px 80px !important;
    overflow: visible !important;
}

.ll-kakao-wrap {
    position: absolute !important;
    right: clamp(46px, 7vw, 96px) !important;
    top: auto !important;
    bottom: 0 !important;
    width: 330px !important;
    height: 520px !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: visible !important;
}

.ll-kakao-phone {
    width: 300px !important;
    height: 590px !important;
    min-height: 590px !important;
    max-height: none !important;
    transform: translateY(-64px) !important;
}

.ll-kakao-chat {
    padding: 20px 14px 16px !important;
}

.ll-kakao-msg {
    max-width: 74% !important;
}

.ll-kakao-input {
    min-height: 58px !important;
}

/* 푸터 빅로고: 이미지 배경까지 검게 변하던 문제를 피하고, 고품질 텍스트 워드마크로 가로를 채웁니다. */
.ll-footer {
    padding-bottom: 0 !important;
}

.ll-footer__biglogo {
    width: 100vw !important;
    max-width: none !important;
    margin: 12px 0 -2.2vw 50% !important;
    padding: 0 2vw !important;
    transform: translateX(-50%) !important;
    line-height: 0.72 !important;
}

.ll-footer__biglogo img {
    display: none !important;
}

.ll-footer__biglogo::before {
    content: 'luniverseLab.' !important;
    display: block !important;
    width: 100% !important;
    color: #050606 !important;
    font-family: "Instrument Serif", Georgia, serif !important;
    font-size: clamp(96px, 19.8vw, 330px) !important;
    font-style: italic !important;
    font-weight: 700 !important;
    line-height: 0.74 !important;
    letter-spacing: -0.075em !important;
    white-space: nowrap !important;
    text-align: center !important;
    text-rendering: geometricPrecision !important;
    -webkit-font-smoothing: antialiased !important;
}

@media (max-width: 980px) {
    .ll-cta-banner__inner {
        grid-template-columns: 1fr !important;
        padding-bottom: 0 !important;
    }

    .ll-kakao-wrap {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: min(330px, 100%) !important;
        height: 520px !important;
        margin: 56px auto -20px !important;
    }

    .ll-kakao-phone {
        transform: none !important;
    }

    .ll-inquiry__inline-form .ll-estimator-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 720px) {
    .ll-roadblocks__intro h2,
    .ll-portfolio__head h2,
    .ll-section-title h2,
    .ll-faq__title h2,
    .ll-inquiry__copy h2 {
        font-size: clamp(42px, 13vw, 64px) !important;
    }

    .ll-inquiry__inline-form .ll-service-select {
        grid-template-columns: 1fr !important;
    }
}

/* PATCH N (2026-05-28) — 최종 캡처 기준 가격 카드/푸터 워드마크 가시성 보정 */
.ll-plan-group {
    display: none !important;
}

.ll-plan-group.is-active {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    max-width: 1120px !important;
    margin: 34px auto 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.ll-plan-card {
    display: flex !important;
    min-height: 440px !important;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 24px !important;
    background: #f1f1ed !important;
    color: #202527 !important;
    box-shadow: 0 18px 52px rgba(32, 37, 39, 0.06) !important;
}

.ll-plan-card.is-popular {
    background: #202527 !important;
    color: #fff !important;
}

.ll-footer__biglogo {
    margin-top: 24px !important;
    padding-inline: 1vw !important;
}

.ll-footer__biglogo::before {
    font-size: clamp(68px, 12.8vw, 190px) !important;
    letter-spacing: -0.058em !important;
    line-height: 0.9 !important;
}

@media (max-width: 900px) {
    .ll-plan-group.is-active {
        grid-template-columns: 1fr !important;
    }
}

/* PATCH M (2026-05-28) — 실제 캡처 후 세로 리듬/목업/푸터 보정 */
.ll-hero-sequence {
    height: 140vh !important;
    min-height: 140vh !important;
}

.ll-roadblocks,
.ll-portfolio,
.ll-process,
.ll-pricing,
.ll-faq,
.ll-inquiry {
    padding-top: clamp(72px, 8vw, 118px) !important;
    padding-bottom: clamp(72px, 8vw, 118px) !important;
}

.ll-roadblocks__intro {
    margin-bottom: 36px !important;
}

.ll-roadblocks__solutions {
    min-height: 0 !important;
}

.ll-process__layout {
    min-height: 0 !important;
    gap: 48px !important;
}

.ll-process__stage {
    min-height: 420px !important;
}

.ll-pricing .ll-section-title {
    margin-bottom: 28px !important;
}

.ll-plan-group.is-active {
    margin-top: 28px !important;
}

.ll-faq__grid {
    min-height: 0 !important;
}

.ll-inquiry__intro-row {
    padding-top: 20px !important;
    padding-bottom: 28px !important;
}

.ll-kakao-chat:empty::before {
    content: '상담 내용을 불러오는 중입니다.' !important;
    display: block !important;
    margin: auto !important;
    color: rgba(32, 37, 39, 0.45) !important;
    font-size: 12px !important;
}

.ll-kakao-phone {
    transform: translateY(-72px) !important;
}

.ll-footer__biglogo {
    margin: 18px 0 0 50% !important;
    padding: 0 1.5vw 10px !important;
    line-height: 1 !important;
}

.ll-footer__biglogo::before {
    font-size: clamp(86px, 17vw, 285px) !important;
    line-height: 0.86 !important;
    letter-spacing: -0.07em !important;
}

/* PATCH O (2026-05-28) — GSAP inline reveal 잔여값 방어 및 푸터 로고 최종 크기 확정 */
.ll-plan-card,
.ll-portfolio__rail figure,
.ll-portfolio__rail img {
    opacity: 1 !important;
    visibility: visible !important;
}

.ll-plan-card {
    transform: none !important;
}

.ll-footer__biglogo {
    margin: 24px 0 0 !important;
    padding: 0 1vw 14px !important;
    line-height: 1 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
}

.ll-footer__biglogo::before {
    font-size: clamp(62px, 10.8vw, 158px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.052em !important;
}

/* PATCH P (2026-05-28) — 최종 QA 기준: 이전 left/right 값과 reveal 초기값이 화면 품질을 해치지 않도록 방어 */
.ll-footer__biglogo {
    left: 0 !important;
    right: auto !important;
}

.ll-portfolio__head,
.ll-portfolio__head h2,
.ll-section-title,
.ll-section-title h2,
.ll-faq__title,
.ll-faq__title h2,
.ll-inquiry__copy,
.ll-inquiry__copy h2 {
    opacity: 1 !important;
    visibility: visible !important;
}

/* PATCH Q (2026-05-28) — 로드 직후에도 섹션 완성도가 보이도록 핵심 타이포/카드 reveal 잔여값을 정리 */
.ll-roadblocks__intro,
.ll-roadblocks__intro h2,
.ll-roadblocks__intro p,
.ll-rb-card,
.ll-rb-card__body,
.ll-process__aside,
.ll-process__stage,
.ll-process__panel.is-active,
.ll-faq__items,
.ll-faq__items details {
    opacity: 1 !important;
    visibility: visible !important;
}

.ll-portfolio__head h2 {
    max-width: 760px !important;
    line-height: 0.88 !important;
}

.ll-portfolio__head h2 span {
    display: block !important;
    white-space: nowrap !important;
}

.ll-footer__biglogo {
    overflow: hidden !important;
}

.ll-footer__biglogo::before {
    font-size: clamp(88px, 17.2vw, 274px) !important;
    line-height: 0.78 !important;
    letter-spacing: -0.078em !important;
}

@media (max-width: 720px) {
    .ll-portfolio__head h2 span {
        white-space: normal !important;
    }

    .ll-footer__biglogo::before {
        font-size: clamp(70px, 23vw, 148px) !important;
        letter-spacing: -0.07em !important;
    }
}

/* PATCH R (2026-05-28) — 푸터 빅로고를 CSS 텍스트가 아닌 실제 로고 이미지로 복원 */
.ll-footer__biglogo {
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: clamp(240px, 25vw, 420px) !important;
    margin: clamp(42px, 6vw, 96px) 0 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    line-height: 0 !important;
    transform: none !important;
}

.ll-footer__biglogo::before {
    content: none !important;
    display: none !important;
}

.ll-footer__biglogo img {
    display: block !important;
    width: 198vw !important;
    max-width: none !important;
    height: auto !important;
    margin-left: -49vw !important;
    transform: translateY(-45%) !important;
    opacity: 1 !important;
    filter: none !important;
}

@media (max-width: 720px) {
    .ll-footer__biglogo {
        height: clamp(150px, 42vw, 240px) !important;
        margin-top: 48px !important;
    }

    .ll-footer__biglogo img {
        width: 240vw !important;
        margin-left: -70vw !important;
        transform: translateY(-42%) !important;
    }
}

/* STEP 9 (2026-05-29) — 푸터 필수 정보와 실제 고해상도 빅로고를 복원하고 플로팅 배너와 겹치지 않게 여백을 조정합니다. */
.ll-footer {
    background: #f8f8f6 !important;
    padding: 0 0 clamp(92px, 7vw, 118px) !important;
    overflow: hidden !important;
}

.ll-footer__top,
.ll-footer__bottom {
    display: flex !important;
    max-width: 1280px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: clamp(24px, 4vw, 60px) !important;
    padding-left: clamp(24px, 4vw, 60px) !important;
}

.ll-footer__top {
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: clamp(20px, 2.4vw, 34px) !important;
    padding-bottom: 16px !important;
}

.ll-footer__top .ll-footer__list {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.ll-footer__divider {
    width: min(1280px, calc(100% - clamp(48px, 8vw, 120px))) !important;
    margin: 0 auto !important;
    border: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.ll-footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding-top: 14px !important;
    padding-bottom: clamp(8px, 1.2vw, 18px) !important;
}

.ll-footer__biz,
.ll-footer__copy {
    max-width: 100% !important;
    margin: 0 !important;
    color: rgba(0, 0, 0, 0.42) !important;
    font-size: 11px !important;
    line-height: 1.8 !important;
    text-align: left !important;
    white-space: normal !important;
}

.ll-footer__biglogo {
    display: block !important;
    position: relative !important;
    left: 50% !important;
    width: 100vw !important;
    height: auto !important;
    margin: clamp(2px, 0.6vw, 10px) 0 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    line-height: 0 !important;
    transform: translateX(-50%) !important;
}

.ll-footer__biglogo::before {
    content: none !important;
    display: none !important;
}

.ll-footer__biglogo img {
    display: block !important;
    width: 100vw !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

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

    .ll-footer__top,
    .ll-footer__bottom {
        padding-right: 22px !important;
        padding-left: 22px !important;
    }

    .ll-footer__biglogo {
        margin-top: 8px !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .ll-footer__biglogo img {
        width: 100vw !important;
    }
}

/* PATCH S (2026-05-28) — 레퍼런스 기반 6단계 문의폼 UX: 진행점, 진행바, 카드 전환, 선택 카드 */
.ll-step-form {
    position: relative !important;
}

.ll-step-nav {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.ll-step-nav::before,
.ll-step-nav button::after {
    display: none !important;
    content: none !important;
}

.ll-step-nav button {
    position: relative !important;
    display: flex !important;
    min-width: 0 !important;
    min-height: 54px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(32, 37, 39, 0.38) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: color 0.28s ease, transform 0.28s ease !important;
}

.ll-step-nav button:disabled {
    cursor: default !important;
}

.ll-step-nav button::before {
    content: attr(data-step-pill) !important;
    display: grid !important;
    width: 16px !important;
    height: 16px !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: #e4e5df !important;
    color: transparent !important;
    box-shadow: none !important;
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease !important;
}

.ll-step-nav button.is-active {
    color: #202527 !important;
    transform: translateY(-1px) !important;
}

.ll-step-nav button.is-active::before {
    background: #cfff24 !important;
    box-shadow: 0 0 0 7px rgba(207, 255, 36, 0.22) !important;
    transform: scale(1.08) !important;
}

.ll-step-nav button.is-done {
    color: rgba(32, 37, 39, 0.72) !important;
}

.ll-step-nav button.is-done::before {
    content: '✓' !important;
    background: #202527 !important;
    color: #cfff24 !important;
    font-size: 10px !important;
}

.ll-step-progress {
    width: 100% !important;
    height: 6px !important;
    margin: 2px 0 10px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    background: rgba(32, 37, 39, 0.08) !important;
}

.ll-step-progress span {
    display: block !important;
    width: 0;
    height: 100% !important;
    border-radius: inherit !important;
    background: #cfff24 !important;
    transition: width 0.34s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.ll-step-status {
    margin: 0 0 22px !important;
    color: rgba(32, 37, 39, 0.45) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.ll-form-step {
    display: none !important;
}

.ll-form-step.is-active {
    display: block !important;
}

.ll-form-step.is-enter-forward {
    animation: llStepEnterForward 0.34s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

.ll-form-step.is-enter-backward {
    animation: llStepEnterBackward 0.34s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

@keyframes llStepEnterForward {
    from { opacity: 0; transform: translateX(28px); filter: blur(8px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes llStepEnterBackward {
    from { opacity: 0; transform: translateX(-28px); filter: blur(8px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.ll-choice-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 0 0 18px !important;
}

.ll-choice-card {
    position: relative !important;
    min-height: 118px !important;
    padding: 18px 18px 18px 52px !important;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 16px 36px rgba(32, 37, 39, 0.05) !important;
    cursor: pointer !important;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
}

.ll-choice-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(32, 37, 39, 0.2) !important;
    box-shadow: 0 20px 42px rgba(32, 37, 39, 0.09) !important;
}

.ll-choice-card input {
    position: absolute !important;
    left: 18px !important;
    top: 21px !important;
    width: 18px !important;
    height: 18px !important;
    accent-color: #cfff24 !important;
}

.ll-choice-card:has(input:checked) {
    border-color: rgba(207, 255, 36, 0.95) !important;
    background: linear-gradient(135deg, rgba(207, 255, 36, 0.22), rgba(255, 255, 255, 0.92)) !important;
}

.ll-choice-card b {
    display: block !important;
    margin-bottom: 7px !important;
    color: #202527 !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
}

.ll-choice-card small {
    display: block !important;
    color: rgba(32, 37, 39, 0.56) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
}

.ll-step-actions .ll-btn {
    min-width: 128px !important;
    gap: 8px !important;
    border-radius: 999px !important;
}

.ll-step-actions .ll-btn:disabled {
    opacity: 0.62 !important;
    cursor: wait !important;
}

.ll-btn-spinner {
    width: 15px !important;
    height: 15px !important;
    border: 2px solid currentColor !important;
    border-right-color: transparent !important;
    border-radius: 999px !important;
    animation: llSpin 0.75s linear infinite !important;
}

@keyframes llSpin {
    to { transform: rotate(360deg); }
}

.ll-inquiry-modal .ll-form-panel {
    max-height: min(860px, calc(100vh - 48px)) !important;
    overflow: auto !important;
}

.ll-inquiry-modal .ll-estimator-layout {
    min-height: 0 !important;
}

@media (max-width: 820px) {
    .ll-step-nav {
        gap: 6px !important;
    }

    .ll-step-nav button {
        min-height: 42px !important;
        font-size: 0 !important;
    }

    .ll-step-nav button::before {
        width: 15px !important;
        height: 15px !important;
    }

    .ll-choice-grid {
        grid-template-columns: 1fr !important;
    }
}

/* PATCH T (2026-05-28) — 문의폼 컨셉 재구성: 레퍼런스처럼 중앙 단일 카드형 온보딩 폼으로 전환 */
.ll-inquiry {
    background: #fbfbf8 !important;
}

.ll-inquiry__intro-row {
    display: block !important;
    max-width: 620px !important;
    padding-bottom: 24px !important;
    text-align: center !important;
}

.ll-inquiry__copy {
    max-width: none !important;
}

.ll-inquiry__copy h2 {
    font-size: clamp(48px, 7vw, 84px) !important;
    line-height: 0.92 !important;
}

.ll-inquiry__copy > span {
    display: block !important;
    max-width: 460px !important;
    margin: 12px auto 0 !important;
}

.ll-inquiry__open-btn {
    margin: 22px auto 0 !important;
}

.ll-inquiry__inline-shell {
    max-width: 620px !important;
    padding-inline: 20px !important;
}

.ll-inquiry__inline-form {
    width: 100% !important;
}

.ll-form-panel,
.ll-inquiry__inline-form .ll-form-panel--inline {
    display: block !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border: 1px solid rgba(32, 37, 39, 0.1) !important;
    border-radius: 32px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: #202527 !important;
    box-shadow: 0 26px 90px rgba(32, 37, 39, 0.12) !important;
    backdrop-filter: blur(18px) !important;
}

.ll-estimator-layout,
.ll-inquiry__inline-form .ll-estimator-layout,
.ll-inquiry-modal .ll-estimator-layout {
    display: block !important;
    min-height: 0 !important;
    grid-template-columns: none !important;
}

.ll-estimator-side,
.ll-inquiry__inline-form .ll-estimator-side {
    display: block !important;
    padding: 30px 34px 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #202527 !important;
}

.ll-modal-head {
    margin: 0 !important;
    text-align: left !important;
}

.ll-modal-head p {
    margin-bottom: 8px !important;
    color: #a8ff1f !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
}

.ll-modal-head h2,
.ll-inquiry__inline-form .ll-modal-head h2 {
    margin: 0 !important;
    color: #202527 !important;
    font-family: var(--ll-font-sans) !important;
    font-size: clamp(25px, 4vw, 34px) !important;
    font-style: normal !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    letter-spacing: -0.055em !important;
}

.ll-modal-head span {
    display: block !important;
    max-width: 420px !important;
    margin-top: 8px !important;
    color: rgba(32, 37, 39, 0.58) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.ll-estimate-card,
.ll-estimator-note,
.ll-inquiry__inline-form .ll-estimate-card,
.ll-inquiry__inline-form .ll-estimator-note {
    display: none !important;
}

.ll-estimator-workspace,
.ll-inquiry__inline-form .ll-estimator-workspace {
    padding: 24px 34px 30px !important;
    background: transparent !important;
}

.ll-form-alert {
    margin-bottom: 18px !important;
    border-radius: 16px !important;
}

.ll-step-nav {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

.ll-step-nav button {
    min-height: 44px !important;
    font-size: 10px !important;
}

.ll-step-status {
    margin-bottom: 24px !important;
}

.ll-step-head {
    margin-bottom: 20px !important;
}

.ll-step-head span {
    color: rgba(32, 37, 39, 0.42) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.ll-step-head h3,
.ll-inquiry__inline-form .ll-step-head h3 {
    margin-top: 8px !important;
    color: #202527 !important;
    font-family: var(--ll-font-sans) !important;
    font-size: clamp(25px, 4.4vw, 34px) !important;
    font-style: normal !important;
    font-weight: 850 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
}

.ll-service-select,
.ll-inquiry__inline-form .ll-service-select {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
}

.ll-service-option,
.ll-inquiry__inline-form .ll-service-option {
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 18px !important;
    background: #f7f7f2 !important;
    box-shadow: none !important;
    transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease !important;
}

.ll-service-option:hover {
    transform: translateY(-1px) !important;
    border-color: rgba(32, 37, 39, 0.18) !important;
}

.ll-service-option > label,
.ll-inquiry__inline-form .ll-service-option > label {
    display: flex !important;
    min-height: 68px !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 18px !important;
    cursor: pointer !important;
}

.ll-service-option input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: #cfff24 !important;
}

.ll-service-option b {
    display: block !important;
    color: #202527 !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
}

.ll-service-option small {
    display: block !important;
    margin-top: 5px !important;
    color: rgba(32, 37, 39, 0.5) !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

.ll-service-option.is-selected {
    border-color: rgba(207, 255, 36, 0.9) !important;
    background: linear-gradient(135deg, rgba(207, 255, 36, 0.18), #f7f7f2 56%) !important;
}

.ll-option-list {
    display: none !important;
    padding: 0 16px 16px 48px !important;
    gap: 8px !important;
}

.ll-service-option.is-selected .ll-option-list {
    display: grid !important;
}

.ll-option-list label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    color: rgba(32, 37, 39, 0.76) !important;
    font-size: 12px !important;
}

.ll-choice-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
}

.ll-choice-card {
    min-height: 0 !important;
    padding: 16px 16px 16px 50px !important;
    border-radius: 18px !important;
    box-shadow: none !important;
}

.ll-form label {
    color: rgba(32, 37, 39, 0.78) !important;
    font-size: 13px !important;
    font-weight: 750 !important;
}

.ll-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.ll-form textarea,
.ll-form select {
    min-height: 48px !important;
    margin-top: 8px !important;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 14px !important;
    background: #f7f7f2 !important;
    color: #202527 !important;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease !important;
}

.ll-form textarea {
    padding-top: 13px !important;
}

.ll-form input:focus,
.ll-form textarea:focus,
.ll-form select:focus {
    border-color: rgba(207, 255, 36, 0.95) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(207, 255, 36, 0.18) !important;
    outline: none !important;
}

.ll-form__row {
    gap: 12px !important;
}

.ll-dynamic-questions {
    display: grid !important;
    gap: 10px !important;
}

.ll-dynamic-questions fieldset {
    display: none !important;
    margin: 0 !important;
    padding: 16px !important;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 18px !important;
    background: #f7f7f2 !important;
}

.ll-dynamic-questions fieldset.is-active {
    display: block !important;
    animation: llStepEnterForward 0.3s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

.ll-dynamic-questions legend {
    padding: 0 6px !important;
    color: #202527 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

.ll-radio-row {
    display: grid !important;
    gap: 8px !important;
}

.ll-radio-row label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.72) !important;
}

.ll-confirm-box {
    margin-top: 16px !important;
    padding: 16px !important;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 18px !important;
    background: #f7f7f2 !important;
}

.ll-confirm-box dl {
    display: grid !important;
    gap: 8px !important;
}

.ll-confirm-box dl div {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(32, 37, 39, 0.06) !important;
}

.ll-step-actions {
    margin-top: 22px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(32, 37, 39, 0.07) !important;
}

.ll-step-actions .ll-btn {
    min-height: 44px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
}

.ll-inquiry-modal {
    padding: 24px !important;
}

.ll-inquiry-modal .ll-form-panel {
    max-width: 620px !important;
    max-height: min(860px, calc(100vh - 48px)) !important;
    overflow-y: auto !important;
}

.ll-modal-close {
    top: 18px !important;
    right: 18px !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: #f2f2ed !important;
    color: #202527 !important;
}

@media (max-width: 720px) {
    .ll-inquiry__inline-shell {
        padding-inline: 14px !important;
    }

    .ll-estimator-side,
    .ll-inquiry__inline-form .ll-estimator-side,
    .ll-estimator-workspace,
    .ll-inquiry__inline-form .ll-estimator-workspace {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .ll-form__row {
        grid-template-columns: 1fr !important;
    }
}

/* PATCH V (2026-05-28) — 헤더 CTA를 레퍼런스형 분리 pill + 원형 화살표 버튼으로 교체 */
.ll-header > .ll-nav__cta {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: start !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 8px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #0b0c0c !important;
    box-shadow: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.ll-header > .ll-nav__cta:hover {
    gap: 0 !important;
    background: transparent !important;
    color: #0b0c0c !important;
}

.ll-nav__cta-label {
    display: inline-flex !important;
    min-height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    background: #cfff24 !important;
    color: #0b0c0c !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    letter-spacing: -0.02em !important;
    line-height: 1 !important;
    transition: background 0.45s ease, color 0.45s ease, transform 0.45s ease !important;
}

.ll-nav__cta-icon {
    position: relative !important;
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    background: #cfff24 !important;
    color: #0b0c0c !important;
    transition: background 0.45s ease, color 0.45s ease, transform 0.45s ease !important;
}

.ll-nav__cta-arrow {
    position: absolute !important;
    width: 18px !important;
    height: 18px !important;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease !important;
}

.ll-nav__cta-arrow--out {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}

.ll-nav__cta-arrow--in {
    transform: translate(-34px, 34px) !important;
    opacity: 0 !important;
}

.ll-header > .ll-nav__cta:hover .ll-nav__cta-label,
.ll-header > .ll-nav__cta:hover .ll-nav__cta-icon {
    background: #202527 !important;
    color: #cfff24 !important;
}

.ll-header > .ll-nav__cta:hover .ll-nav__cta-arrow--out {
    transform: translate(34px, -34px) !important;
    opacity: 0 !important;
}

.ll-header > .ll-nav__cta:hover .ll-nav__cta-arrow--in {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}

@media (max-width: 900px) {
    .ll-header > .ll-nav__cta {
        display: none !important;
    }
}

/* PATCH W (2026-05-28) — 반응형 햄버거 메뉴를 풀스크린 패널형 내비게이션으로 재구성 */
.ll-mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9990 !important;
    display: none;
    pointer-events: none !important;
}

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

.ll-mobile-menu__overlay {
    position: absolute !important;
    inset: 0 !important;
    border: 0 !important;
    background: rgba(0, 0, 0, 0.46) !important;
    opacity: 0;
    cursor: pointer !important;
}

.ll-mobile-menu__content {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: min(88vw, 520px) !important;
    height: 100dvh !important;
    overflow: hidden !important;
    transform: translateX(120%);
    color: #f8f8f1 !important;
}

.ll-mobile-menu.is-open .ll-mobile-menu__content {
    transform: translateX(0) !important;
}

.ll-mobile-menu__bg,
.ll-mobile-menu__layer,
.ll-mobile-menu__shapes {
    position: absolute !important;
    inset: 0 !important;
}

.ll-mobile-menu__layer {
    transform: translateX(104%);
}

.ll-mobile-menu.is-open .ll-mobile-menu__layer {
    transform: translateX(0) !important;
}

.ll-mobile-menu__layer--first {
    background: #cfff24 !important;
}

.ll-mobile-menu__layer--second {
    background: #3d4238 !important;
}

.ll-mobile-menu__layer--main {
    background: #0b0c0c !important;
}

.ll-mobile-menu__shapes {
    z-index: 2 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.ll-mobile-shape {
    position: absolute !important;
    right: -12% !important;
    bottom: 4% !important;
    width: min(72vw, 430px) !important;
    height: auto !important;
    opacity: 0;
    transform: scale(0.9) !important;
    transition: opacity 0.28s ease !important;
}

.ll-mobile-shape.is-active {
    opacity: 1;
}

.ll-mobile-shape .shape-element {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.ll-mobile-menu__list {
    position: relative !important;
    z-index: 3 !important;
    display: grid !important;
    height: 100% !important;
    align-content: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: clamp(82px, 14vh, 150px) clamp(28px, 8vw, 64px) 56px !important;
    list-style: none !important;
}

.ll-mobile-menu__list li {
    border-bottom: 1px solid rgba(248, 248, 241, 0.11) !important;
}

.ll-mobile-menu__list li:first-child {
    border-top: 1px solid rgba(248, 248, 241, 0.11) !important;
}

.ll-mobile-menu__list .nav-link {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    padding: clamp(18px, 3.8vh, 30px) 0 !important;
    color: #f8f8f1 !important;
    text-decoration: none !important;
}

.ll-mobile-menu__list .nav-link span {
    display: block !important;
    transform-origin: left center !important;
    font-family: var(--ll-font-sans) !important;
    font-size: clamp(42px, 12vw, 76px) !important;
    font-weight: 850 !important;
    line-height: 0.9 !important;
    letter-spacing: -0.07em !important;
    transition: color 0.28s ease, transform 0.28s ease !important;
}

.ll-mobile-menu__list .nav-link:hover span {
    color: #cfff24 !important;
    transform: translateX(8px) skewX(-4deg) !important;
}

body.ll-mobile-menu-open {
    overflow: hidden !important;
}

@media (max-width: 900px) {
    .ll-header {
        z-index: 10000 !important;
    }

    .ll-header__pill .ll-menu-toggle {
        position: relative !important;
        z-index: 10001 !important;
        display: inline-flex !important;
        min-width: 108px !important;
        height: 44px !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 4px 5px 4px 18px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #cfff24 !important;
        color: #0b0c0c !important;
        cursor: pointer !important;
        overflow: hidden !important;
        box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16) !important;
    }

    .ll-header__pill .ll-menu-toggle .menu-button-text {
        display: block !important;
        height: 18px !important;
        width: 42px !important;
        overflow: hidden !important;
    }

    .ll-header__pill .ll-menu-toggle .menu-button-text p {
        display: block !important;
        margin: 0 !important;
        color: currentColor !important;
        font-size: 13px !important;
        font-weight: 750 !important;
        line-height: 18px !important;
        letter-spacing: -0.02em !important;
    }

    .ll-header__pill .ll-menu-toggle .icon-wrap {
        display: grid !important;
        width: 34px !important;
        height: 34px !important;
        place-items: center !important;
        border-radius: 999px !important;
        background: #0b0c0c !important;
        color: #cfff24 !important;
        flex: 0 0 auto !important;
    }

    .ll-header__pill .ll-menu-toggle .menu-button-icon {
        display: block !important;
        width: 16px !important;
        height: 16px !important;
    }

    .ll-header__pill .ll-menu-toggle > span:not(.screen-reader-text):not(.menu-button-text):not(.icon-wrap) {
        display: none !important;
    }
}

@media (min-width: 901px) {
    .ll-mobile-menu {
        display: none !important;
    }
}

/* PATCH U (2026-05-28) — 기존 문의폼 패널 전용 스타일 잔여값 제거 */
.ll-inquiry__inline-form .ll-step-nav,
.ll-inquiry-modal .ll-step-nav,
.ll-form-panel .ll-step-nav {
    margin: 0 0 12px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ll-inquiry__inline-form .ll-step-progress,
.ll-inquiry-modal .ll-step-progress,
.ll-form-panel .ll-step-progress {
    margin: 4px 0 12px !important;
}

.ll-inquiry__inline-form .ll-step-status,
.ll-inquiry-modal .ll-step-status,
.ll-form-panel .ll-step-status {
    margin: 0 0 24px !important;
    color: rgba(32, 37, 39, 0.46) !important;
    font-size: 12px !important;
    text-align: center !important;
}

.ll-inquiry__inline-form .ll-step-nav button,
.ll-inquiry-modal .ll-step-nav button,
.ll-form-panel .ll-step-nav button {
    min-height: 48px !important;
    background: transparent !important;
}

.ll-inquiry__inline-form .ll-step-nav button::before,
.ll-inquiry-modal .ll-step-nav button::before,
.ll-form-panel .ll-step-nav button::before {
    width: 16px !important;
    height: 16px !important;
}

/* STEP 1 (2026-05-28) — 헤더/히어로만 조정: 상단 CTA 여백, 로고 톤, 흰색 타이포, 스크롤 cue */
.ll-header > .ll-logo {
    padding-top: 20px !important;
}

.ll-header > .ll-logo img {
    transition: filter 0.24s ease, opacity 0.24s ease !important;
}

.ll-header.is-on-dark > .ll-logo img {
    filter: invert(1) brightness(1.18) contrast(1.05) !important;
}

.ll-header.is-on-light > .ll-logo img {
    filter: none !important;
}

.ll-header__pill {
    padding: 16px 46px !important;
    border-radius: 0 0 26px 26px !important;
}

.ll-header__pill .ll-nav__list {
    gap: 42px !important;
}

.ll-header__pill .ll-nav a::before {
    font-size: 14px !important;
    font-weight: 650 !important;
}

.ll-header > .ll-nav__cta {
    margin-top: 20px !important;
    background: #cfff24 !important;
}

.ll-nav__cta-label {
    font-size: 15px !important;
    font-weight: 760 !important;
}

.ll-nav__cta-icon {
    width: 42px !important;
    height: 42px !important;
    background: #cfff24 !important;
}

.ll-hero-sequence__title,
.ll-hero-sequence__title .ll-word,
.ll-hero-sequence__desc {
    color: #fff !important;
}

.ll-scroll-cue {
    position: absolute !important;
    left: 50% !important;
    bottom: clamp(28px, 5vh, 54px) !important;
    z-index: 6 !important;
    display: grid !important;
    width: 34px !important;
    height: 58px !important;
    place-items: start center !important;
    border: 1px solid rgba(255, 255, 255, 0.66) !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.16) !important;
    opacity: 0.88 !important;
    transform: translateX(-50%) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.ll-scroll-cue span {
    display: block !important;
    width: 6px !important;
    height: 6px !important;
    margin-top: 12px !important;
    border-radius: 999px !important;
    background: #fff !important;
    animation: llStepOneScrollCue 1.45s cubic-bezier(.4, 0, .2, 1) infinite !important;
}

@keyframes llStepOneScrollCue {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    28% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(25px);
    }
}

/* STEP 1-B (2026-05-28) — 로고/중앙 메뉴/CTA의 세로 중심 밸런스 보정 */
.ll-header__pill {
    padding: 30px 54px 22px !important;
    border-radius: 0 0 30px 30px !important;
}

.ll-header__pill .ll-nav__list {
    gap: 46px !important;
}

/* STEP 3 (2026-05-28) — 섹션 타이틀 상단 키워드를 공통 알약형 뱃지로 통일합니다. */
.ll-eyebrow,
.ll-section-title > p {
    display: inline-flex !important;
    width: fit-content;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin: 0 0 22px !important;
    padding: 7px 12px 6px;
    border: 1px solid rgba(32, 37, 38, 0.11);
    border-radius: 999px;
    background: rgba(32, 37, 38, 0.055);
    color: rgba(32, 37, 38, 0.72) !important;
    font-family: var(--ll-font-body);
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    vertical-align: top;
}

.ll-roadblocks__intro,
.ll-section-title,
.ll-faq__title {
    text-align: inherit;
}

.ll-section-title > p {
    align-self: center;
}

.ll-cta-banner .ll-eyebrow {
    border-color: rgba(205, 255, 26, 0.22);
    background: rgba(205, 255, 26, 0.12);
    color: var(--ll-lime) !important;
}

/* STEP 4 (2026-05-29) — 포트폴리오 첫 줄을 가격 섹션의 이탤릭 세리프 타이틀과 같은 톤으로 고정합니다. */
.ll-portfolio__head h2 span {
    font-family: var(--ll-font-display) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

/* STEP 5 (2026-05-29) — 작업 프로세스를 중앙 타이틀 + 스크롤 전환형 단계 섹션으로 정리합니다. */
.ll-process__head {
    max-width: 860px;
    margin: 0 auto clamp(24px, 3.4vh, 36px);
    text-align: center;
}

.ll-process {
    min-height: 100vh;
    padding-top: clamp(118px, 14vh, 146px) !important;
    padding-bottom: clamp(112px, 13vh, 148px) !important;
    font-family: var(--ll-font-body);
}

.ll-process__head h2 {
    margin: 0;
    font-family: var(--ll-font-body);
    font-size: clamp(34px, 4.2vw, 60px);
    font-style: normal;
    font-weight: 650;
    line-height: 1.02;
    letter-spacing: 0;
    color: var(--ll-ink);
}

.ll-process__head .ll-eyebrow {
    margin-right: auto !important;
    margin-left: auto !important;
}

.ll-process__layout {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr) !important;
    gap: clamp(28px, 4.8vw, 64px) !important;
    align-items: start;
    max-height: calc(100vh - 300px);
}

.ll-process__aside {
    position: relative;
    top: auto;
}

.ll-process__nav {
    gap: 8px !important;
}

.ll-process__navbtn {
    font-family: var(--ll-font-body);
    min-height: 52px;
    padding: 13px 16px !important;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 18px !important;
    background: rgba(32, 37, 39, 0.035) !important;
}

.ll-process__navlabel {
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.ll-process__num {
    width: 24px !important;
    font-size: 10px !important;
}

.ll-process__navbtn.is-active {
    border-color: rgba(32, 37, 39, 0.18) !important;
    background: #202527 !important;
    color: #fff !important;
}

.ll-process__check {
    display: none !important;
}

.ll-process__stage {
    position: relative !important;
    top: auto;
    min-height: min(390px, calc(100vh - 320px)) !important;
    overflow: hidden;
}

.ll-process__panel:not(.is-active) {
    display: none !important;
    opacity: 0 !important;
}

.ll-process__panel.is-active {
    display: block !important;
    opacity: 1 !important;
    border: 1px solid rgba(32, 37, 39, 0.08);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f0 100%);
    box-shadow: 0 28px 80px rgba(32, 37, 39, 0.08);
    padding: clamp(24px, 3vw, 38px);
}

.ll-process__panel-head {
    align-items: flex-start !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

.ll-process__panel-head b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--ll-lime);
    color: var(--ll-ink) !important;
    font-size: 12px !important;
}

.ll-process__panel-head h3 {
    font-family: var(--ll-font-body) !important;
    font-style: normal !important;
    font-weight: 650 !important;
    font-size: clamp(26px, 3vw, 40px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}

.ll-process__desc {
    max-width: 640px !important;
    margin-bottom: 16px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.ll-process__detail {
    margin-bottom: 24px !important;
    padding: 14px 18px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.ll-process__visual {
    height: 84px !important;
}

.ll-process__visual span {
    font-size: 118px !important;
    translate: 0 18px !important;
}

/* STEP 6 (2026-05-29) — 가격 섹션의 탭/카드/회사소개서 영역 간격과 툴팁 충돌을 정리합니다. */
.ll-pricing .ll-section-title {
    margin-bottom: 38px !important;
}

.ll-pricing .ll-tabs {
    margin-top: 0 !important;
    margin-bottom: 46px !important;
}

.ll-pricing .ll-plan-group.is-active {
    margin-top: 0 !important;
    gap: 24px !important;
}

.ll-pricing .ll-plan-card {
    padding-bottom: 30px !important;
}

.ll-pricing .ll-plan-card ul {
    margin-bottom: 30px !important;
}

.ll-pricing .ll-plan-card__cta {
    margin-top: auto !important;
}

.ll-pricing .ll-profile-download {
    position: relative;
    margin-top: 56px !important;
    gap: 22px !important;
    padding-bottom: 34px;
}

.ll-pricing .ll-profile-download p {
    margin-bottom: 0 !important;
}

.ll-pricing .ll-profile-download .ll-btn {
    position: relative;
}

.ll-pricing .ll-profile-download .ll-btn::after {
    content: "준비중";
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--ll-lime);
    color: var(--ll-ink);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.ll-pricing .ll-profile-download .ll-btn::before {
    content: "";
    position: absolute;
    top: calc(100% - 7px);
    left: 50%;
    z-index: 1;
    width: 10px;
    height: 10px;
    background: var(--ll-lime);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px) rotate(45deg);
    transition: opacity 180ms ease, transform 180ms ease;
}

.ll-pricing .ll-profile-download .ll-btn:hover::after,
.ll-pricing .ll-profile-download .ll-btn:focus-visible::after,
.ll-pricing .ll-profile-download .ll-btn:hover::before,
.ll-pricing .ll-profile-download .ll-btn:focus-visible::before {
    opacity: 1;
}

.ll-pricing .ll-profile-download .ll-btn:hover::after,
.ll-pricing .ll-profile-download .ll-btn:focus-visible::after {
    transform: translate(-50%, 0);
}

.ll-pricing .ll-profile-download .ll-btn:hover::before,
.ll-pricing .ll-profile-download .ll-btn:focus-visible::before {
    transform: translate(-50%, 0) rotate(45deg);
}

/* STEP 7 (2026-05-29) — FAQ 배경/아코디언 아이콘 위치와 CTA 주변 배경을 정리합니다. */
.ll-faq {
    background: #f4f4ef !important;
}

.ll-faq__grid {
    align-items: start;
}

.ll-faq__items {
    gap: 14px !important;
}

.ll-faq details[data-faq-item] {
    overflow: hidden;
    border: 1px solid rgba(32, 37, 39, 0.08) !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 16px 44px rgba(32, 37, 39, 0.045);
}

.ll-faq details[data-faq-item] summary {
    min-height: 64px;
    position: relative;
    padding: 18px 76px 18px 24px !important;
    gap: 22px !important;
}

.ll-faq details[data-faq-item] summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    width: 30px !important;
    height: 30px !important;
    margin-left: 0;
    border-color: rgba(32, 37, 39, 0.16) !important;
    background: #f4f4ef;
    color: var(--ll-ink);
    transform: translateY(-50%);
}

.ll-faq details[data-faq-item][open] summary::after {
    background: var(--ll-ink) !important;
    color: #fff !important;
    transform: translateY(-50%) rotate(90deg);
}

.ll-faq__answer p {
    max-width: 860px;
    padding: 0 88px 28px 24px !important;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(32, 37, 39, 0.68);
}

.ll-faq-highlight {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0.02em 0.22em 0.06em;
    border-radius: 0.18em;
    background: linear-gradient(180deg, transparent 42%, rgba(205, 255, 26, 0.72) 42%);
    color: var(--ll-ink);
    font-weight: 750;
    white-space: nowrap;
}

.ll-cta-banner {
    background: #fff !important;
}

/* STEP 8 (2026-05-29) — CTA 카카오 목업의 서비스 라벨과 말풍선 순차 등장 루프를 보강합니다. */
.ll-kakao-head__info span {
    max-width: 178px;
    color: rgba(23, 23, 23, 0.66) !important;
    font-size: 9px !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.ll-kakao-row {
    opacity: 0 !important;
    transform: translateY(10px) scale(0.98) !important;
    animation: ll-kakao-row-in 360ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ll-kakao-msg {
    opacity: 1 !important;
    transform: none !important;
}

@keyframes ll-kakao-row-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* STEP 8-B (2026-05-29) — CTA 카카오 목업 라운드/실시간 시간/프로필/배너 밀도를 보정합니다. */
.ll-cta-banner {
    padding-top: clamp(86px, 10vw, 132px) !important;
}

.ll-cta-banner__inner {
    min-height: clamp(300px, 30vw, 360px) !important;
}

.ll-cta-banner h2 {
    max-width: 520px !important;
    font-weight: 650 !important;
    line-height: 1.16 !important;
    letter-spacing: 0.01em !important;
}

.ll-cta-banner__copy > span {
    max-width: 540px !important;
    line-height: 1.72 !important;
}

.ll-kakao-phone {
    border-radius: 54px !important;
    background: #0a0b0b !important;
    padding: 0 !important;
}

.ll-kakao-phone::after {
    display: none !important;
}

.ll-kakao-status {
    height: 32px !important;
    flex-basis: 32px !important;
    width: 100% !important;
    padding: 0 28px !important;
    border-radius: 38px 38px 0 0 !important;
}

.ll-kakao-status i {
    margin-left: auto !important;
}

.ll-kakao-head {
    min-height: 60px !important;
    flex-basis: 60px !important;
    width: 100% !important;
    padding: 11px 18px 10px !important;
}

.ll-kakao-avatar {
    display: grid !important;
    overflow: hidden !important;
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #050606 !important;
    color: transparent !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22) !important;
}

.ll-kakao-avatar img {
    display: block !important;
    width: 78% !important;
    height: auto !important;
    filter: invert(1) brightness(1.28) !important;
    opacity: 0.94 !important;
}

.ll-kakao-head__info span {
    max-width: 190px !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ll-kakao-chat {
    padding-top: 14px !important;
    border-radius: 0 !important;
}

.ll-kakao-row__avatar {
    position: relative !important;
    width: 24px !important;
    height: 24px !important;
    flex-basis: 24px !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 35% 38%, #262b2f 0 2px, transparent 2.4px),
        radial-gradient(circle at 65% 38%, #262b2f 0 2px, transparent 2.4px),
        radial-gradient(ellipse at 50% 68%, transparent 0 3px, #262b2f 3.3px 4.3px, transparent 4.6px),
        radial-gradient(circle at 50% 50%, #fff5c9 0 58%, #f4d98d 59% 100%) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.ll-kakao-row__avatar:empty::before {
    content: "" !important;
    position: absolute !important;
    top: 11px !important;
    left: 7px !important;
    width: 10px !important;
    height: 4px !important;
    border-top: 2px solid rgba(38, 43, 47, 0.88) !important;
    border-radius: 50% 50% 0 0 !important;
}

.ll-kakao-msg {
    border-radius: 17px !important;
    white-space: normal !important;
}

.ll-kakao-msg--left {
    border-radius: 17px 17px 17px 7px !important;
}

.ll-kakao-msg--right {
    border-radius: 17px 17px 7px 17px !important;
}

.ll-kakao-time {
    font-size: 6.5px !important;
    font-weight: 700 !important;
    opacity: 0.68 !important;
}

.ll-kakao-input {
    height: 54px !important;
    flex-basis: 54px !important;
    width: 100% !important;
    border-radius: 0 0 42px 42px !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
}

@media (max-width: 900px) {
    .ll-process {
        min-height: 0;
    }

    .ll-process__layout {
        grid-template-columns: 1fr !important;
    }

    .ll-process__aside,
    .ll-process__stage {
        position: relative !important;
        top: auto;
    }
}

/* PATCH X (2026-05-28) — 문의 섹션 제거 후 CTA 아이폰 카카오 상담 목업을 최종 정렬합니다. */
.ll-cta-banner {
    padding: clamp(118px, 14vw, 180px) 0 0 !important;
    overflow: visible !important;
}

.ll-cta-banner__inner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) !important;
    min-height: clamp(390px, 42vw, 480px) !important;
    align-items: end !important;
    overflow: visible !important;
    border-radius: clamp(28px, 3vw, 40px) !important;
    background:
        radial-gradient(circle at 72% 6%, rgba(207, 255, 36, 0.18), transparent 30%),
        linear-gradient(135deg, #101414 0%, #171d1a 52%, #080909 100%) !important;
}

.ll-cta-banner__copy {
    position: relative !important;
    z-index: 2 !important;
    max-width: 560px !important;
    align-self: center !important;
}

.ll-cta-banner h2 {
    max-width: 560px !important;
    color: #f8f8f1 !important;
}

.ll-cta-banner__copy > span {
    max-width: 460px !important;
    color: rgba(248, 248, 241, 0.68) !important;
}

.ll-kakao-wrap {
    position: absolute !important;
    right: clamp(34px, 7vw, 112px) !important;
    bottom: 0 !important;
    top: auto !important;
    z-index: 3 !important;
    display: flex !important;
    width: min(34vw, 340px) !important;
    min-width: 286px !important;
    height: clamp(470px, 50vw, 610px) !important;
    align-items: flex-end !important;
    justify-content: center !important;
    pointer-events: none !important;
    transform: none !important;
}

.ll-kakao-phone {
    position: relative !important;
    display: flex !important;
    width: clamp(278px, 25vw, 318px) !important;
    height: clamp(548px, 49vw, 626px) !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 12px 10px 14px !important;
    overflow: hidden !important;
    border: 8px solid #0a0b0b !important;
    border-radius: 48px !important;
    background: #b7c6d4 !important;
    box-shadow:
        0 34px 70px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.16) inset !important;
    transform: none !important;
}

.ll-kakao-phone::before {
    content: "" !important;
    position: absolute !important;
    top: 11px !important;
    left: 50% !important;
    z-index: 8 !important;
    width: 84px !important;
    height: 24px !important;
    border-radius: 999px !important;
    background: #050606 !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
}

.ll-kakao-phone::after {
    content: "" !important;
    position: absolute !important;
    right: -11px !important;
    top: 148px !important;
    width: 4px !important;
    height: 78px !important;
    border-radius: 999px !important;
    background: #111 !important;
}

.ll-kakao-dynamic-island {
    display: none !important;
}

.ll-kakao-status {
    position: relative !important;
    z-index: 6 !important;
    display: flex !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 18px !important;
    border: 0 !important;
    background: #fee500 !important;
    color: #111 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

.ll-kakao-status i {
    display: block !important;
    width: 74px !important;
    height: 20px !important;
}

.ll-kakao-status span {
    color: #111 !important;
}

.ll-kakao-head {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    min-height: 64px !important;
    flex: 0 0 64px !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 14px 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fee500 !important;
    color: #171717 !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08) !important;
}

.ll-kakao-head::before {
    content: "‹" !important;
    display: grid !important;
    width: 22px !important;
    height: 22px !important;
    place-items: center !important;
    color: #171717 !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

.ll-kakao-head::after {
    content: "☰" !important;
    margin-left: auto !important;
    color: #171717 !important;
    font-size: 15px !important;
}

.ll-kakao-avatar {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 13px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0)),
        #111 !important;
    color: #cfff24 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.ll-kakao-head__info strong {
    color: #171717 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
}

.ll-kakao-head__info span {
    color: rgba(23, 23, 23, 0.62) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
}

.ll-kakao-chat {
    display: flex !important;
    height: auto !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    gap: 10px !important;
    overflow: hidden !important;
    padding: 16px 12px 12px !important;
    background:
        linear-gradient(rgba(183, 198, 212, 0.88), rgba(183, 198, 212, 0.9)),
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.45), transparent 36%) !important;
}

.ll-kakao-chat::before {
    content: "오늘" !important;
    align-self: center !important;
    margin-bottom: 2px !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.34) !important;
    color: rgba(28, 38, 45, 0.58) !important;
    font-size: 10px !important;
    font-weight: 750 !important;
}

.ll-kakao-row {
    display: flex !important;
    width: 100% !important;
    align-items: flex-end !important;
    gap: 6px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.ll-kakao-row--left {
    justify-content: flex-start !important;
}

.ll-kakao-row--right {
    justify-content: flex-end !important;
}

.ll-kakao-row__avatar {
    display: grid !important;
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    place-items: center !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #f7f7f2, #cad4da) !important;
    color: #343d42 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}

.ll-kakao-row__avatar:empty::before {
    content: "고" !important;
}

.ll-kakao-msg {
    display: block !important;
    max-width: 74% !important;
    min-width: 0 !important;
    padding: 9px 11px !important;
    border: 0 !important;
    color: #171717 !important;
    font-size: 11px !important;
    font-weight: 650 !important;
    line-height: 1.45 !important;
    letter-spacing: -0.03em !important;
    white-space: pre-line !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.ll-kakao-msg--left {
    border-radius: 15px 15px 15px 4px !important;
    background: #fff !important;
}

.ll-kakao-msg--right {
    border-radius: 15px 15px 4px 15px !important;
    background: #fee500 !important;
}

.ll-kakao-time {
    display: inline-block !important;
    flex: 0 0 auto !important;
    color: rgba(35, 45, 52, 0.52) !important;
    font-size: 8px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    opacity: 1 !important;
}

.ll-kakao-time--right {
    text-align: right !important;
}

.ll-kakao-input {
    display: flex !important;
    height: 58px !important;
    flex: 0 0 58px !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 9px 10px 10px !important;
    border: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 0 0 35px 35px !important;
    background: #fff !important;
}

.ll-kakao-input::before {
    content: "+" !important;
    display: grid !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: #eef0ef !important;
    color: #60696d !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.ll-kakao-input::after {
    display: none !important;
}

.ll-kakao-input span {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    background: #f1f2f0 !important;
    color: rgba(28, 33, 35, 0.42) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
}

.ll-kakao-input button {
    display: grid !important;
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fee500 !important;
    color: #111 !important;
}

.ll-plan-card__cta {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #1f2828 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
}

.ll-plan-card.is-featured .ll-plan-card__cta {
    background: #fff !important;
    color: #101414 !important;
}

@media (max-width: 980px) {
    .ll-cta-banner {
        padding-top: 96px !important;
    }

    .ll-cta-banner__inner {
        grid-template-columns: 1fr !important;
        min-height: 760px !important;
        padding-bottom: 0 !important;
    }

    .ll-cta-banner__copy {
        align-self: start !important;
        padding-right: 0 !important;
    }

    .ll-kakao-wrap {
        right: 50% !important;
        bottom: 0 !important;
        width: min(86vw, 330px) !important;
        min-width: 0 !important;
        height: 560px !important;
        transform: translateX(50%) !important;
    }

    .ll-kakao-phone {
        width: min(84vw, 300px) !important;
        height: 570px !important;
    }
}

@media (max-width: 640px) {
    .ll-cta-banner {
        padding-top: 76px !important;
    }

    .ll-cta-banner__inner {
        min-height: 720px !important;
        border-radius: 28px !important;
    }

    .ll-cta-banner__btns {
        width: 100% !important;
    }

    .ll-kakao-wrap {
        height: 516px !important;
    }

    .ll-kakao-phone {
        width: min(86vw, 278px) !important;
        height: 526px !important;
        border-radius: 42px !important;
    }

    .ll-kakao-msg {
        max-width: 77% !important;
        font-size: 10px !important;
    }
}

/* STEP 8-C (2026-05-29) — 하단 CTA 목업 최종 우선순위 보정: 폰 내부 꽉참, 원형 프로필, 크랙 제거, 배너 높이 축소. */
.ll-cta-banner__inner {
    min-height: clamp(278px, 27vw, 330px) !important;
    align-items: end !important;
}

.ll-cta-banner h2 {
    font-weight: 620 !important;
    line-height: 1.22 !important;
    letter-spacing: 0.025em !important;
}

.ll-kakao-phone {
    padding: 0 !important;
    overflow: hidden !important;
    border-color: #070808 !important;
    border-radius: 54px !important;
    background: #b7c6d4 !important;
}

.ll-kakao-phone::after,
.ll-kakao-status::before {
    display: none !important;
}

.ll-kakao-status,
.ll-kakao-head,
.ll-kakao-input {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
}

.ll-kakao-status {
    height: 32px !important;
    flex: 0 0 32px !important;
    padding: 0 28px !important;
    border-radius: 46px 46px 0 0 !important;
}

.ll-kakao-status i {
    margin-left: auto !important;
}

.ll-kakao-head {
    min-height: 60px !important;
    flex: 0 0 60px !important;
    padding: 11px 18px 10px !important;
    border-radius: 0 !important;
}

.ll-kakao-avatar {
    display: grid !important;
    overflow: hidden !important;
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #050606 !important;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.25) !important;
}

.ll-kakao-avatar img {
    display: block !important;
    width: 78% !important;
    height: auto !important;
    filter: invert(1) brightness(1.35) !important;
    opacity: 0.96 !important;
}

.ll-kakao-row__avatar {
    position: relative !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 35% 38%, #273034 0 2px, transparent 2.4px),
        radial-gradient(circle at 65% 38%, #273034 0 2px, transparent 2.4px),
        radial-gradient(ellipse at 50% 70%, transparent 0 3px, #273034 3.2px 4.2px, transparent 4.5px),
        radial-gradient(circle at 50% 50%, #fff2be 0 58%, #f0cd75 59% 100%) !important;
    color: transparent !important;
    font-size: 0 !important;
}

.ll-kakao-row__avatar::before {
    content: "" !important;
    position: absolute !important;
    top: 11px !important;
    left: 7px !important;
    width: 10px !important;
    height: 4px !important;
    border-top: 2px solid rgba(39, 48, 52, 0.9) !important;
    border-radius: 50% 50% 0 0 !important;
}

.ll-kakao-msg {
    white-space: normal !important;
}

.ll-kakao-input {
    height: 54px !important;
    flex: 0 0 54px !important;
    padding: 9px 14px 10px !important;
    border-radius: 0 0 46px 46px !important;
}

/* STEP 8-D (2026-05-29) — CTA 목업 누락 재보정: 이전 카피, 제작 문의, 실제 로고 프로필, 자연스러운 2D 고객 표정. */
.ll-cta-banner__inner {
    min-height: clamp(246px, 23vw, 298px) !important;
}

.ll-cta-banner h2 {
    line-height: 1.3 !important;
    letter-spacing: 0.04em !important;
}

.ll-kakao-phone {
    padding: 0 !important;
}

.ll-kakao-status,
.ll-kakao-head,
.ll-kakao-input {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: none !important;
}

.ll-kakao-avatar {
    display: grid !important;
    overflow: hidden !important;
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #000 !important;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.28) !important;
}

.ll-kakao-avatar img {
    display: block !important;
    width: 88% !important;
    height: 88% !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
}

.ll-kakao-row__avatar {
    position: relative !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 999px !important;
    background:
        linear-gradient(22deg, transparent 0 70%, #f08b53 71% 82%, transparent 83%),
        radial-gradient(circle at 38% 41%, #2a2d2f 0 1.45px, transparent 1.8px),
        radial-gradient(circle at 64% 41%, #2a2d2f 0 1.45px, transparent 1.8px),
        linear-gradient(155deg, transparent 0 25%, rgba(42, 45, 47, 0.88) 26% 30%, transparent 31%),
        linear-gradient(25deg, transparent 0 25%, rgba(42, 45, 47, 0.88) 26% 30%, transparent 31%),
        radial-gradient(circle at 70% 66%, rgba(240, 139, 83, 0.48) 0 3px, transparent 3.3px),
        radial-gradient(circle at 50% 50%, #ffd35a 0 60%, #f5aa34 61% 100%) !important;
    box-shadow: inset -2px -3px 0 rgba(180, 99, 24, 0.16), 0 1px 2px rgba(0, 0, 0, 0.08) !important;
}

.ll-kakao-row__avatar::before {
    content: "" !important;
    position: absolute !important;
    top: 14px !important;
    left: 8px !important;
    width: 9px !important;
    height: 5px !important;
    border-top: 2px solid rgba(42, 45, 47, 0.9) !important;
    border-radius: 50% 50% 0 0 !important;
    transform: rotate(-14deg) !important;
}

.ll-kakao-row__avatar::after {
    content: "" !important;
    position: absolute !important;
    right: -2px !important;
    bottom: 4px !important;
    width: 11px !important;
    height: 8px !important;
    border-radius: 70% 30% 70% 30% !important;
    background: #f08b53 !important;
    transform: rotate(-20deg) !important;
}

/* STEP 8-E (2026-05-29) — 카카오 목업 프로필 로딩, 고민하는 고객 표정, 작은 시간 텍스트를 최종 보정합니다. */
.ll-kakao-avatar {
    display: block !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28) !important;
}

.ll-kakao-avatar img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: none !important;
    opacity: 1 !important;
}

.ll-kakao-row__avatar {
    position: relative !important;
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    flex: 0 0 25px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 38% 38%, #293033 0 1.4px, transparent 1.8px),
        radial-gradient(circle at 64% 38%, #293033 0 1.4px, transparent 1.8px),
        linear-gradient(152deg, transparent 0 23%, rgba(42, 45, 47, 0.9) 24% 29%, transparent 30%),
        linear-gradient(28deg, transparent 0 23%, rgba(42, 45, 47, 0.9) 24% 29%, transparent 30%),
        radial-gradient(circle at 63% 65%, rgba(240, 139, 83, 0.42) 0 3px, transparent 3.2px),
        radial-gradient(circle at 50% 50%, #ffd35a 0 62%, #f4a93b 63% 100%) !important;
    box-shadow: inset -2px -3px 0 rgba(180, 99, 24, 0.16), 0 1px 2px rgba(0, 0, 0, 0.08) !important;
}

.ll-kakao-row__avatar::before {
    content: "" !important;
    position: absolute !important;
    top: 14px !important;
    left: 7px !important;
    width: 9px !important;
    height: 5px !important;
    border-top: 2px solid rgba(42, 45, 47, 0.9) !important;
    border-radius: 50% !important;
    transform: rotate(-18deg) !important;
}

.ll-kakao-row__avatar::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 2px !important;
    width: 11px !important;
    height: 11px !important;
    border-radius: 56% 44% 48% 52% !important;
    background:
        linear-gradient(132deg, transparent 0 44%, rgba(42, 45, 47, 0.48) 45% 55%, transparent 56%),
        #f18a54 !important;
    transform: rotate(-28deg) !important;
}

.ll-kakao-time {
    margin-bottom: 2px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
    white-space: nowrap !important;
}

/* STEP 8-F (2026-05-29) — 고객 프로필을 이미지 에셋으로 교체하고, 메시지 시간은 보조 정보 크기로 낮춥니다. */
.ll-kakao-row__avatar {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    background: #ffd35a url("../images/customer-thinking-avatar.svg") center / cover no-repeat !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08) !important;
}

.ll-kakao-row__avatar::before,
.ll-kakao-row__avatar::after {
    content: none !important;
    display: none !important;
}

.ll-kakao-row .ll-kakao-time,
.ll-kakao-time,
.ll-kakao-time--right {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 7px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    transform: none !important;
    white-space: nowrap !important;
}

/* STEP 10-A (2026-05-29) — 요청 섹션만 좁게 보정: 가격, 프로세스, 포트폴리오, 헤더 CTA, 문제제기. */
.ll-pricing .ll-section-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.ll-pricing .ll-section-title > p {
    margin-right: auto !important;
    margin-left: auto !important;
    align-self: center !important;
}

.ll-pricing .ll-section-title h2 {
    margin-right: auto !important;
    margin-left: auto !important;
}

.ll-tabs button {
    display: inline-flex !important;
    position: relative !important;
    align-items: center !important;
    gap: 7px !important;
}

.ll-tabs button small {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 20px !important;
    padding: 0 8px !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #202527 !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

.ll-tabs button[data-launching]::after {
    content: attr(data-launching) !important;
    bottom: calc(100% + 12px) !important;
    z-index: 2 !important;
    padding: 8px 11px !important;
    border-radius: 14px !important;
    background: #202527 !important;
    color: #cfff24 !important;
    box-shadow: 0 12px 28px rgba(32, 37, 39, 0.18) !important;
}

.ll-tabs button[data-launching]::before {
    content: "" !important;
    position: absolute !important;
    bottom: calc(100% + 6px) !important;
    left: 50% !important;
    z-index: 1 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 2px !important;
    background: #202527 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate(-50%, 6px) rotate(45deg) !important;
    transition: opacity 180ms ease, transform 180ms ease !important;
}

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

.ll-process__panel.is-active,
.ll-process__visual,
.ll-process__visual-placeholder {
    box-shadow: none !important;
    filter: none !important;
}

.ll-process__visual {
    display: none !important;
}

.ll-portfolio__head h2 {
    line-height: 1.04 !important;
}

.ll-portfolio__head h2 em {
    font-family: var(--ll-font-display) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.ll-portfolio__head h2 span {
    font-family: inherit !important;
    font-style: normal !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    white-space: nowrap !important;
}

.ll-portfolio__head p:not(.ll-eyebrow) {
    max-width: 620px !important;
    margin-top: 16px !important;
    color: rgba(32, 37, 39, 0.62) !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
}

.ll-nav__cta--inline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #0b0c0c !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-label,
.ll-header > .ll-nav__cta .ll-nav__cta-icon,
.ll-nav__cta--inline .ll-nav__cta-label,
.ll-nav__cta--inline .ll-nav__cta-icon {
    background: #cfff24 !important;
    color: #0b0c0c !important;
}

.ll-header > .ll-nav__cta:hover .ll-nav__cta-label,
.ll-header > .ll-nav__cta:hover .ll-nav__cta-icon,
.ll-nav__cta--inline:hover .ll-nav__cta-label,
.ll-nav__cta--inline:hover .ll-nav__cta-icon,
.ll-nav__cta--inline:focus-visible .ll-nav__cta-label,
.ll-nav__cta--inline:focus-visible .ll-nav__cta-icon {
    background: #202527 !important;
    color: #cfff24 !important;
}

.ll-nav__cta--inline:hover .ll-nav__cta-arrow--out,
.ll-nav__cta--inline:focus-visible .ll-nav__cta-arrow--out {
    opacity: 0 !important;
    transform: translate(34px, -34px) !important;
}

.ll-nav__cta--inline:hover .ll-nav__cta-arrow--in,
.ll-nav__cta--inline:focus-visible .ll-nav__cta-arrow--in {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.ll-roadblocks__track span {
    border: 1px solid rgba(32, 37, 39, 0.9) !important;
    border-radius: 999px !important;
    background: transparent !important;
    color: #202527 !important;
    font-weight: 760 !important;
}

.ll-roadblocks__track span:nth-child(3n + 2) {
    background: #202527 !important;
    color: #fff !important;
}

.ll-roadblocks__track span:nth-child(7n + 3) {
    border-color: #cfff24 !important;
    background: #cfff24 !important;
    color: #202527 !important;
}

.ll-rb-card__icon {
    background: transparent !important;
    box-shadow: none !important;
    color: #cfff24 !important;
}

.ll-rb-icon-svg {
    color: #cfff24 !important;
}

/* STEP 10-B (2026-05-29) — 공통 타이틀의 자간/행간/두께만 CTA 톤에 맞추고, 정렬은 기존값을 유지합니다. */
.ll-roadblocks__intro h2,
.ll-portfolio__head h2,
.ll-process__head h2,
.ll-pricing .ll-section-title h2,
.ll-faq__title h2 {
    font-weight: 620 !important;
    line-height: 1.24 !important;
    letter-spacing: 0.035em !important;
}

/* STEP 10-C (2026-05-29) — 버튼/포트폴리오/가격/FAQ의 미세 오류를 요청 범위 안에서 보정합니다. */
.ll-header > .ll-nav__cta,
.ll-nav__cta--inline {
    gap: 6px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-label,
.ll-nav__cta--inline .ll-nav__cta-label {
    min-height: 54px !important;
    padding: 0 31px !important;
    border-radius: 999px !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-icon,
.ll-nav__cta--inline .ll-nav__cta-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 999px !important;
}

.ll-portfolio__head h2 {
    line-height: 0.98 !important;
}

.ll-portfolio__title-line {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 0.18em !important;
    white-space: nowrap !important;
}

.ll-portfolio__title-line em {
    font-family: var(--ll-font-display) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.ll-portfolio__title-line strong,
.ll-portfolio__title-line--showcase {
    font-family: var(--ll-font-body) !important;
    font-style: normal !important;
    font-weight: 620 !important;
    letter-spacing: 0.035em !important;
}

.ll-plan-card.is-popular .ll-plan-card__cta,
.ll-plan-card.is-popular .ll-plan-card__badge {
    background: #f7f5ee !important;
    border-color: #f7f5ee !important;
    color: #202527 !important;
}

.ll-plan-card.is-popular .ll-plan-card__cta:hover {
    background: #cfff24 !important;
    border-color: #cfff24 !important;
    color: #111 !important;
}

.ll-faq__title h2 {
    line-height: 0.98 !important;
}

.ll-faq__title .ll-nav__cta--faq {
    margin-top: 24px !important;
}

@media (max-width: 720px) {
    .ll-portfolio__title-line {
        white-space: normal !important;
    }

    .ll-header > .ll-nav__cta .ll-nav__cta-label,
    .ll-nav__cta--inline .ll-nav__cta-label {
        min-height: 48px !important;
        padding: 0 24px !important;
    }

    .ll-header > .ll-nav__cta .ll-nav__cta-icon,
    .ll-nav__cta--inline .ll-nav__cta-icon {
        width: 48px !important;
        height: 48px !important;
    }
}

/* STEP 10-D (2026-05-29) — 분리형 CTA 버튼 사이의 틈과 hover 중간 상태를 제거합니다. */
.ll-header > .ll-nav__cta,
.ll-nav__cta--inline {
    gap: 0 !important;
    column-gap: 0 !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-label,
.ll-nav__cta--inline .ll-nav__cta-label,
.ll-header > .ll-nav__cta .ll-nav__cta-icon,
.ll-nav__cta--inline .ll-nav__cta-icon {
    transition: background-color 0.28s ease, color 0.28s ease !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-icon,
.ll-nav__cta--inline .ll-nav__cta-icon {
    margin-left: -3px !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-arrow--in,
.ll-nav__cta--inline .ll-nav__cta-arrow--in {
    transform: translate(-18px, 18px) !important;
}

.ll-header > .ll-nav__cta:hover .ll-nav__cta-arrow--out,
.ll-header > .ll-nav__cta:focus-visible .ll-nav__cta-arrow--out,
.ll-nav__cta--inline:hover .ll-nav__cta-arrow--out,
.ll-nav__cta--inline:focus-visible .ll-nav__cta-arrow--out {
    opacity: 0 !important;
    transform: translate(18px, -18px) !important;
}

.ll-header > .ll-nav__cta:hover .ll-nav__cta-arrow--in,
.ll-header > .ll-nav__cta:focus-visible .ll-nav__cta-arrow--in,
.ll-nav__cta--inline:hover .ll-nav__cta-arrow--in,
.ll-nav__cta--inline:focus-visible .ll-nav__cta-arrow--in {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* STEP 10-E (2026-05-29) — 남아 있던 구버전 CTA hover 배경/간격 규칙과 포트폴리오 타이틀 행간을 정리합니다. */
.ll-header > .ll-nav__cta,
.ll-nav__cta--inline {
    gap: 4px !important;
    column-gap: 4px !important;
    background: transparent !important;
    transition: none !important;
}

.ll-header > .ll-nav__cta:hover,
.ll-header > .ll-nav__cta:focus-visible,
.ll-nav__cta--inline:hover,
.ll-nav__cta--inline:focus-visible {
    gap: 4px !important;
    column-gap: 4px !important;
    background: transparent !important;
    color: #0b0c0c !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-icon,
.ll-nav__cta--inline .ll-nav__cta-icon {
    margin-left: 0 !important;
    transform: none !important;
}

.ll-header > .ll-nav__cta:hover .ll-nav__cta-icon,
.ll-header > .ll-nav__cta:focus-visible .ll-nav__cta-icon,
.ll-nav__cta--inline:hover .ll-nav__cta-icon,
.ll-nav__cta--inline:focus-visible .ll-nav__cta-icon {
    transform: none !important;
}

.ll-portfolio__title {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    line-height: 0.82 !important;
}

.ll-portfolio__title .ll-portfolio__title-line {
    line-height: 0.9 !important;
}

.ll-portfolio__title-line--showcase {
    margin-top: -0.02em !important;
}

/* STEP 10-F (2026-05-29) — CTA 라벨과 원형 아이콘이 다시 분리돼 보이지 않도록 간격을 완전히 제거합니다. */
.ll-header > .ll-nav__cta,
.ll-header > .ll-nav__cta:hover,
.ll-header > .ll-nav__cta:focus-visible,
.ll-nav__cta--inline,
.ll-nav__cta--inline:hover,
.ll-nav__cta--inline:focus-visible {
    gap: 0 !important;
    column-gap: 0 !important;
    background: transparent !important;
}

.ll-header > .ll-nav__cta .ll-nav__cta-icon,
.ll-nav__cta--inline .ll-nav__cta-icon {
    margin-left: -1px !important;
}

/* STEP 11-A (2026-05-29) — 히어로를 대형 교차 타이포 중심으로 재구성하고 작은 보조 요소를 제거합니다. */
.ll-hero-sequence__content {
    justify-content: center !important;
    overflow: hidden !important;
}

.ll-hero-sequence__bottom,
.ll-hero-sequence__side,
.ll-hero-sequence__desc,
.ll-scroll-cue {
    display: none !important;
}

.ll-hero-kinetic-title {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    width: min(96vw, 1880px) !important;
    margin: 0 auto !important;
    padding: 0 2.5vw !important;
    flex-direction: column !important;
    align-items: stretch !important;
    color: #fff !important;
    font-family: var(--ll-font-body) !important;
    font-size: clamp(82px, 13.8vw, 260px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.075em !important;
    line-height: 0.78 !important;
    text-transform: none !important;
}

.ll-hero-kinetic-title__line {
    display: block !important;
    will-change: transform !important;
    white-space: nowrap !important;
}

.ll-hero-kinetic-title__line--top {
    align-self: flex-start !important;
}

.ll-hero-kinetic-title__line--bottom {
    align-self: flex-end !important;
}

@media (max-width: 800px) {
    .ll-hero-kinetic-title {
        width: 100vw !important;
        padding: 0 20px !important;
        font-size: clamp(58px, 18vw, 132px) !important;
        letter-spacing: -0.065em !important;
        line-height: 0.84 !important;
    }

    .ll-hero-kinetic-title__line--bottom {
        align-self: flex-start !important;
    }
}

/* STEP 11-B (2026-05-29) — 석상 중앙부를 가리지 않도록 타이포 마스크를 적용하고 스크롤 큐를 하단에 복원합니다. */
.ll-hero-kinetic-title {
    -webkit-mask-image: radial-gradient(ellipse 24vw 50vh at 52% 50%, transparent 0 48%, #000 55%) !important;
    mask-image: radial-gradient(ellipse 24vw 50vh at 52% 50%, transparent 0 48%, #000 55%) !important;
}

.ll-scroll-cue.ll-scroll-cue--hero {
    position: absolute !important;
    left: 50% !important;
    bottom: clamp(20px, 4vh, 42px) !important;
    z-index: 7 !important;
    display: grid !important;
    width: 28px !important;
    height: 48px !important;
    place-items: start center !important;
    border: 1px solid rgba(255, 255, 255, 0.62) !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.12) !important;
    opacity: 0.82 !important;
    transform: translateX(-50%) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.ll-scroll-cue.ll-scroll-cue--hero span {
    width: 5px !important;
    height: 5px !important;
    margin-top: 10px !important;
    border-radius: 999px !important;
    background: #fff !important;
    animation: llStepOneScrollCue 1.45s cubic-bezier(.4, 0, .2, 1) infinite !important;
}

@media (max-width: 800px) {
    .ll-hero-kinetic-title {
        -webkit-mask-image: radial-gradient(ellipse 38vw 42vh at 54% 50%, transparent 0 42%, #000 51%) !important;
        mask-image: radial-gradient(ellipse 38vw 42vh at 54% 50%, transparent 0 42%, #000 51%) !important;
    }
}
