/* 스피드대부 랜딩 — custom styles (Tailwind CDN loads separately) */

html {
    scroll-padding-top: 5.25rem;
    scroll-padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@media (min-width: 768px) {
    html {
        scroll-padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }
}

/* 고정 하단 바 높이만큼 푸터 배경(네이비)을 이어 올려 크림색 빈 여백 제거 */
.footer-with-fixed-clear {
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
    .footer-with-fixed-clear {
        padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }
}

/* 시크릿 특가 → 문의 모달 (<dialog>) */
.inquiry-modal-shell {
    box-sizing: border-box;
    margin: 0;
    border: none;
    background: transparent;
    padding: 0;
    max-width: 100vw;
}

.inquiry-modal-shell[open] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    max-height: 100dvh;
    padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
        max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
}

.inquiry-modal-shell::backdrop {
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(3px);
}

@media (prefers-reduced-motion: reduce) {
    .inquiry-modal-shell::backdrop {
        backdrop-filter: none;
    }
}

/* 모바일: 단어 단위 줄바꿈·가독성·섹션 문단 여백 */
@media (max-width: 767px) {
    body {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.55;
    }

    section .max-w-container-max-width .text-center > h2,
    section .max-w-container-max-width .text-center > h1 {
        text-wrap: balance;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 22rem;
    }

    section .max-w-container-max-width .text-center > p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 22rem;
        padding-top: 0.5rem;
        padding-bottom: 0.85rem;
        line-height: 1.7;
    }

    /* text-center 안에 mb-* 래퍼가 있는 블록(프로모션 등) */
    section .max-w-container-max-width .text-center [class*="mb-"] > h2.font-headline-lg,
    section .max-w-container-max-width .text-center [class*="mb-"] > p.font-body-lg,
    section .max-w-container-max-width .text-center [class*="mb-"] > p.font-body-md {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 22rem;
        line-height: 1.65;
    }

    section .max-w-container-max-width .text-center [class*="mb-"] > h2.font-headline-lg {
        padding-top: 0.25rem;
        padding-bottom: 0.35rem;
    }

    section .max-w-container-max-width .text-center [class*="mb-"] > p {
        padding-top: 0.45rem;
        padding-bottom: 0.75rem;
    }

    #hero .hero-copy .hero-lede {
        max-width: 19.5rem;
        padding-top: 0.2rem;
        padding-bottom: 0;
        margin-bottom: 0;
        line-height: 1.62;
    }

    /* 모바일 히어로: 이미지 하단 여백 제거 → 섹션 하단에 맞닿게 */
    #hero .hero-visual {
        line-height: 0;
    }

    #hero .hero-copy h1 > span.flex .hero-title-mobile {
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

    #hero .hero-copy h1 > span.hidden {
        max-width: none;
    }

    /* 모바일 히어로: 다중 텍스트 그림자로 대비·입체감 */
    .hero-mobile-headline-shade {
        text-shadow:
            0 1px 0 rgba(255, 255, 255, 0.98),
            0 2px 4px rgba(4, 22, 62, 0.14),
            0 4px 14px rgba(42, 63, 88, 0.14),
            0 8px 26px rgba(42, 63, 88, 0.08);
    }

    .hero-mobile-headline-shade--accent {
        text-shadow:
            0 1px 0 rgba(255, 255, 255, 0.88),
            0 2px 6px rgba(26, 45, 68, 0.28),
            0 5px 18px rgba(42, 63, 88, 0.18),
            0 10px 30px rgba(20, 35, 54, 0.12);
    }

    /* 히어로: 전국 최저가 견적서 란 — 네이비 본문과 구분되는 틸 톤 */
    #hero .hero-price-catch-mobile.hero-mobile-headline-shade--accent {
        color: #0d9488;
        text-shadow:
            0 1px 0 rgba(255, 255, 255, 0.92),
            0 2px 5px rgba(13, 148, 136, 0.22),
            0 4px 14px rgba(15, 118, 110, 0.14),
            0 8px 22px rgba(17, 94, 89, 0.1);
    }

    .hero-mobile-lede-shade {
        text-shadow:
            0 1px 0 rgba(255, 255, 255, 0.96),
            0 2px 5px rgba(30, 41, 59, 0.12),
            0 4px 12px rgba(42, 63, 88, 0.09);
    }

    .hero-mobile-badge-shade {
        box-shadow:
            0 2px 8px rgba(42, 63, 88, 0.14),
            0 6px 18px rgba(42, 63, 88, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.65);
    }
}

@media (min-width: 768px) {
    /* 데스크톱: 전역 .text-center > h1 max-width가 큰 히어로 제목을 막지 않도록 */
    #hero .hero-copy h1 {
        max-width: none;
    }

    /* PC: 리드 카피 한 줄 + 좁은 화면에서도 줄바꿈 없이 들어가도록 글자 크기 유연 조정 */
    #hero .hero-copy .hero-lede {
        white-space: nowrap;
        font-size: clamp(0.9375rem, 0.55vw + 0.78rem, 1.375rem);
        letter-spacing: -0.02em;
    }

    /* 히어로 2행: 전국 최저가 견적서 — 1행 네이비 톤과 구분되는 틸 그라데이션 */
    #hero .hero-tw-desktop .hero-price-catch {
        letter-spacing: -0.035em;
        color: transparent;
        background-image: linear-gradient(105deg, #2dd4bf 0%, #14b8a6 28%, #0d9488 58%, #0f766e 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

/* 히어로 인물 이미지 — 텍스트와 겹치지 않도록 비율 유지·높이 제한 + 은은한 부유감 */
.hero-bg-img {
    max-height: min(92vh, 760px);
    animation: none;
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-img {
        animation: none;
        will-change: auto;
    }
}

@keyframes hero-bg-float {
    0%,
    100% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(7px, -9px);
    }

    40% {
        transform: translate(-8px, -6px);
    }

    60% {
        transform: translate(-6px, 8px);
    }

    80% {
        transform: translate(8px, 5px);
    }
}

@media (min-width: 768px) {
    /* PC: 이미지 하단 = 히어로 하단선 정렬(그리드 열 stretch + flex-end), 세로 높이 억제 */
    #hero .hero-visual {
        line-height: 0;
    }

    .hero-bg-img {
        max-height: min(76vh, 680px);
        object-position: center 58%;
    }
}

/* 컬러 배경 섹션 — 상·하단 흰색 페이드 (그라데이션 강도↑·어느 방향이든 밝은 섹션과 연결) */
.section-edge-fade-top,
.section-edge-fade-bottom {
    pointer-events: none;
    position: absolute;
    inset-inline: 0;
    z-index: 0;
    height: clamp(9rem, 30vmin, 16rem);
}

.section-edge-fade-top {
    top: 0;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(255, 255, 255, 0.94) 18%,
        rgba(255, 255, 255, 0.72) 42%,
        rgba(255, 255, 255, 0.28) 78%,
        transparent 100%
    );
}

.section-edge-fade-bottom {
    bottom: 0;
    top: auto;
    background: linear-gradient(
        to top,
        #ffffff 0%,
        rgba(255, 255, 255, 0.94) 18%,
        rgba(255, 255, 255, 0.72) 42%,
        rgba(255, 255, 255, 0.28) 78%,
        transparent 100%
    );
}

/* 딥 슬레이트 + 틸 포인트 — 단색 블루 패널 대체 */
.section-panel-autorium {
    background: linear-gradient(155deg, #080d16 0%, #101a2a 38%, #162536 68%, #0c1420 100%);
}

/* 어두운 패널: 상단 페이드는 약하게, 하단은 다음(밝은) 섹션과 자연스럽게 이어지도록 은은한 흰 그라데이션 */
.section-panel-autorium .section-edge-fade-top,
.section-panel-autorium .section-edge-fade-bottom {
    height: clamp(2.75rem, 7vmin, 4.5rem);
}

.section-panel-autorium .section-edge-fade-bottom {
    height: clamp(3.5rem, 11vmin, 7rem);
}

.section-panel-autorium .section-edge-fade-top {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 100%
    );
}

.section-panel-autorium .section-edge-fade-bottom {
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.38) 0%,
        rgba(255, 255, 255, 0.16) 32%,
        rgba(255, 255, 255, 0.06) 58%,
        transparent 100%
    );
}

.section-panel-autorium h2.text-white {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 4px 22px rgba(15, 23, 42, 0.55);
}

.section-panel-autorium .compare-section-badge {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

#mobile-quote .relative.z-10 > .flex > div:first-child p.font-body-lg,
#compare .text-center.mb-10 p.font-body-lg,
#compare .text-center.mb-12 p.font-body-lg,
#faq .text-center.mb-12 p.font-body-lg {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 2px 14px rgba(15, 23, 42, 0.45);
}

#mobile-quote .relative.z-10 > .flex > div:first-child > p.inline-flex {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .section-panel-autorium .section-edge-fade-top {
        height: clamp(3rem, 8vmin, 5.5rem);
    }

    .section-panel-autorium .section-edge-fade-bottom {
        height: clamp(4rem, 13vmin, 8.5rem);
    }
}

.stat-card-shine {
    position: relative;
    overflow: hidden;
}

.stat-card-shine:hover {
    box-shadow: 0 16px 48px -12px rgba(10, 22, 40, 0.18);
}

.stat-card-shine::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.5) 0%, transparent 42%);
    pointer-events: none;
    opacity: 0.35;
}

.mobile-quote-capital-strip {
    gap: 0.5rem 0.65rem;
}

.mobile-quote-capital-pill {
    display: inline-flex;
    height: 2.75rem;
    min-width: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-quote-capital-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.26);
}

.mobile-quote-capital-pill img {
    display: block;
    max-height: 1.4rem;
    width: auto;
    max-width: 4.75rem;
    object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-quote-capital-pill:hover {
        transform: none;
    }
}

@media (min-width: 768px) {
    .section-edge-fade-top,
    .section-edge-fade-bottom {
        height: clamp(11rem, 26vw, 19rem);
    }
}

.mobile-quote-slide--mock-height {
    box-sizing: border-box;
    height: var(--mobile-mock-viewport-h);
    min-height: var(--mobile-mock-viewport-h);
    flex-shrink: 0;
}

.mobile-quote-viewport {
    min-height: 0;
}

/* 모바일 목업 세로 스크롤 — 슬라이드 5장, 이동량 = 뷰포트 높이와 동일 */
@keyframes vertical-scroll-feed {
    0%, 14% {
        transform: translateY(0);
    }
    18%, 32% {
        transform: translateY(calc(-1 * var(--mobile-mock-viewport-h)));
    }
    36%, 50% {
        transform: translateY(calc(-2 * var(--mobile-mock-viewport-h)));
    }
    54%, 68% {
        transform: translateY(calc(-3 * var(--mobile-mock-viewport-h)));
    }
    72%, 90% {
        transform: translateY(calc(-4 * var(--mobile-mock-viewport-h)));
    }
    100% {
        transform: translateY(0);
    }
}

/* 모바일 목업 내 견적 화면 — 촘촘한 실제 견적 느낌 */
.mobile-quote-slide {
    font-family: "Hanken Grotesk", system-ui, sans-serif;
}

.mobile-quote-slide .mock-cap-logo-box {
    display: flex;
    height: 2rem;
    width: 3rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.35rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding: 0.1rem;
}

.mobile-quote-slide .mock-cap-logo-box img {
    display: block;
    max-height: 1.45rem;
    width: auto;
    max-width: 2.65rem;
    object-fit: contain;
}

.mobile-quote-slide .mock-cap-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 0.45rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    background: #fff;
    padding: 0.35rem 0.45rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.mobile-quote-slide .mock-spec-grid > div {
    display: flex;
    justify-content: space-between;
    gap: 0.35rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    padding: 0.2rem 0;
    font-size: 11px;
    line-height: 1.35;
}

.mobile-quote-slide .mock-spec-grid > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.animate-vertical-scroll {
    animation: vertical-scroll-feed 28s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@media (prefers-reduced-motion: reduce) {
    .animate-vertical-scroll {
        animation: none !important;
    }
}

@keyframes scroll-snap {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5%); }
}

.animate-scroll {
    animation: scroll-snap 10s ease-in-out infinite;
    width: 100%;
    height: 100%;
}

.gold-gradient {
    background: linear-gradient(135deg, #F29600 0%, #D48400 100%);
}

.text-gold {
    color: #F29600;
}

.bg-gold {
    background-color: #F29600;
}

.mobile-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    /* 프레임(테두리 12px×2) + 목업 셸 상단 패딩(pt-1)만큼 제외해 슬라이드 1장 = 클립 영역 */
    --mobile-mock-viewport-h: calc(650px - 24px - 0.25rem);
    background: #000;
    border: 12px solid #1b1c1c;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.mobile-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1b1c1c;
    border-radius: 20px;
    z-index: 20;
}

.mobile-screen-content {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06), inset 0 1px 12px rgba(15, 23, 42, 0.04);
}

/* Header — logo.png 원본(마스크·단색 오버레이 없음) */
.site-logo {
    display: block;
    flex-shrink: 0;
    height: 2.75rem;
    width: auto;
    max-width: min(260px, 52vw);
    object-fit: contain;
    object-position: left center;
}

@media (min-width: 768px) {
    .site-logo {
        height: 3.25rem;
        max-width: min(300px, 52vw);
    }
}

@media (min-width: 1024px) {
    .site-logo {
        height: 3.5rem;
        max-width: min(340px, 52vw);
    }
}

/* Footer — 어두운 배경용 흰색 로고 */
.footer-brand-logo {
    display: block;
    flex-shrink: 0;
    height: 2.5rem;
    width: auto;
    max-width: min(240px, 72vw);
    object-fit: contain;
    object-position: center center;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .footer-brand-logo {
        height: 2.75rem;
        max-width: min(280px, 100%);
        object-position: left center;
    }
}

.partner-logo-img {
    display: block;
    height: 2.75rem;
    width: auto;
    max-width: min(220px, 46vw);
    object-fit: contain;
}

@media (min-width: 768px) {
    .partner-logo-img {
        height: 3.25rem;
        max-width: 240px;
    }
}

/* 헤더 네비 링크 가독성 */
.nav-item {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #45464e;
    white-space: nowrap;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-item:hover {
    color: #0a1628;
    border-bottom-color: #2dd4bf;
}

@media (min-width: 1024px) {
    .nav-item {
        font-size: 0.875rem;
    }
}

/* 제휴사 무한 가로 마퀴 */
.partner-marquee-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
}

.partner-track {
    display: flex;
    width: max-content;
    animation: partner-marquee-x 42s linear infinite;
}

.partner-marquee-wrap:hover .partner-track {
    animation-play-state: paused;
}

@keyframes partner-marquee-x {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partner-track {
        animation: none;
    }
}

/* 제휴 마퀴: 로고 이미지(SVG/PNG 등), 파일명만 바꿔 교체 가능 */
.partner-logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo-slot .partner-logo-img {
    max-width: min(220px, 46vw);
}

@media (min-width: 768px) {
    .partner-logo-slot .partner-logo-img {
        max-width: 240px;
    }
}

/* 고정 하단 — 모바일 카카오톡 (브랜드 톤 근접) */
.mobile-fixed-kakao {
    background: #fee500;
    color: #191919;
    transition: background-color 0.15s ease, filter 0.15s ease;
}

.mobile-fixed-kakao:hover {
    background: #fdd835;
}

.mobile-fixed-kakao:active {
    filter: brightness(0.96);
}

/* 고정 하단 바 — 모바일 안전영역 */
.fixed-bar-safe {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}


/* 스크롤 진입 시 섹션 등장 */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(2rem);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-inview {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* 렌트·리스 비교표 — 강조 레이아웃 */
.compare-matrix thead th {
    vertical-align: top;
}

.compare-matrix__head--label {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.compare-matrix__head--hero {
    background: linear-gradient(145deg, #2a3f58 0%, #1e2d42 52%, #141d2c 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.compare-matrix thead th.compare-matrix__head--hero + th.compare-matrix__head--hero {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.compare-matrix__head--muted {
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
    border-bottom: 1px solid #94a3b8;
}

.compare-matrix__head-spacer {
    height: 1.75rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .compare-matrix__head-spacer {
        height: 2rem;
    }
}

.compare-matrix__row-label {
    background: #fafbfc;
    width: 28%;
    min-width: 10.5rem;
    border-right: 1px solid #f1f5f9;
}

.compare-matrix__row:nth-child(even) .compare-matrix__row-label {
    background: #f8fafc;
}

.compare-matrix__cell--win {
    background: linear-gradient(180deg, rgba(42, 63, 88, 0.09) 0%, rgba(42, 63, 88, 0.03) 100%);
    border-left: 1px solid rgba(42, 63, 88, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.compare-matrix__cell--dim {
    background: #f8fafc;
    color: #64748b;
}

.compare-matrix__check .material-symbols-outlined {
    color: #2a3f58;
}

.compare-matrix__row {
    transition: background-color 0.2s ease;
}

.compare-matrix__row:hover .compare-matrix__cell--win {
    background: linear-gradient(180deg, rgba(42, 63, 88, 0.13) 0%, rgba(42, 63, 88, 0.05) 100%);
}

.compare-matrix__row:hover .compare-matrix__cell--dim {
    background: #f1f5f9;
}

.mock-logo-invert {
    filter: brightness(0) invert(1);
}

.mobile-quote-slide--dense {
    letter-spacing: -0.02em;
    line-height: 1.45;
}

/* 목업 안 본문·라벨 가독성 */
.mobile-quote-slide--dense .loan-mock-card {
    line-height: 1.45;
}

.mobile-quote-slide--dense .toss-bottom-nav {
    font-size: 0.6875rem;
    line-height: 1.25;
}

.toss-chip-row {
    flex-wrap: wrap;
}

.toss-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toss-chip--on {
    color: #0f172a;
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: rgba(14, 165, 233, 0.35);
}

.toss-bottom-nav {
    letter-spacing: -0.04em;
}

/* 스피드대부 — 비대면 소액대출 랜딩 */
.loan-app-shell {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f35 45%, #0c1829 100%);
}

.loan-app-shell.loan-app-shell--toss {
    background: linear-gradient(180deg, #0b1220 0%, #0f1c30 42%, #0a1628 100%);
}

.loan-mock-card {
    border-radius: 1rem;
    background: #fff;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.08),
        0 12px 24px -8px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(148, 163, 184, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.loan-mock-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 16px -4px rgba(15, 23, 42, 0.12),
        0 20px 40px -12px rgba(13, 148, 136, 0.15),
        0 0 0 1px rgba(45, 212, 191, 0.25);
}

.loan-mock-glow {
    box-shadow:
        0 0 0 1px rgba(45, 212, 191, 0.35),
        0 0 24px rgba(45, 212, 191, 0.2);
}

@keyframes blink-soft {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.72;
    }
}

.badge-live-pulse {
    animation: blink-soft 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .badge-live-pulse {
        animation: none;
    }
}

.feature-card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px -14px rgba(15, 23, 42, 0.2);
}

.form-input-landing {
    min-height: 3.25rem;
    padding: 0.875rem 1rem;
    font-size: 1.0625rem;
}

.btn-cta-landing {
    min-height: 3.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .btn-cta-landing {
        min-height: 3.75rem;
        font-size: 1.125rem;
    }
}
