/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1e293b;
    padding: 0;
    border-radius: 0;
    font-size: 30px;
    font-weight: 700;
}

.btn-phone:hover {
    background: transparent;
    opacity: 0.7;
}

.btn-phone i {
    font-size: 28px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-left {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 30px;
    width: auto;
}

.reg-number {
    font-size: 30px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: -0.3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 70px;
    background: url('../img/main-bg2.png') no-repeat center center;
    background-size: cover;
}

.hero .container {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 650px;
    padding-top: 40px;
}

.hero-subtitle {
    font-size: 22px;
    color: #475569;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

/* 금리 정보 카드 */
.hero-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.hero-info-card .info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.hero-info-card .info-row:last-of-type {
    margin-bottom: 10px;
}

.hero-info-card .label {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dbeafe;
}

.hero-info-card .amount {
    font-size: 40px;
    color: #2563eb;
    font-weight: 800;
}

.hero-info-card .suffix {
    font-size: 20px;
    color: #334155;
    font-weight: 500;
}

.hero-info-card .rate-text {
    font-size: 18px;
    color: #334155;
    margin: 0 0 10px 0;
    text-align: center;
}

.hero-info-card .rate-text strong {
    font-size: 22px;
    color: #2563eb;
    font-weight: 800;
}

.hero-info-card .info-date {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

/* 체크리스트 카드 */
.hero-checklist {
    list-style: none;
    background: rgba(30, 41, 59, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 26px 30px;
    border-radius: 16px;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-checklist li {
    color: #fff;
    font-size: 18px;
    padding: 13px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
}

.hero-checklist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-checklist li:first-child {
    padding-top: 0;
}

.hero-checklist li i {
    color: #60a5fa;
    font-size: 18px;
    flex-shrink: 0;
}

/* Hero Form */
.hero-form-wrapper {
    padding-top: 40px;
}

.hero-form-box {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 28px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.form-title {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.form-title i {
    color: #2563eb;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.form-row input {
    flex: 1;
    padding: 13px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    min-width: 0;
    background: #fff;
}

.form-row input:focus {
    outline: none;
    border-color: #2563eb;
}

.form-row input::placeholder {
    color: #94a3b8;
}

.btn-submit {
    padding: 13px 20px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

/* Product Info Section */
.product-info {
    padding: 100px 0;
    background: url('../img/main3-bg.png') no-repeat center center;
    background-size: cover;
}

.product-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 16px;
}

.product-subtitle {
    font-size: 18px;
    color: #2563eb;
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1e293b;
}

/* Info Table */
.info-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row.limit-row {
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: #2563eb;
}

.info-label {
    width: 140px;
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
}

.info-content strong {
    color: #2563eb;
    font-weight: 700;
}

.info-note {
    font-size: 13px;
    color: #94a3b8;
}

/* Limit Items */
.limit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.limit-item:last-child {
    margin-bottom: 0;
}

.limit-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    min-width: 110px;
    text-align: center;
}

.limit-tag.blue {
    background: #dbeafe;
    color: #2563eb;
}

.limit-tag.gray {
    background: #f1f5f9;
    color: #64748b;
}

.limit-tag.navy {
    background: #1e3a5f;
    color: #fff;
}

.limit-value {
    font-size: 15px;
    color: #334155;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: url('../img/main2-bg.png') no-repeat center center;
    background-size: cover;
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.trust-header h2 .highlight {
    color: #0ea5e9;
}

.trust-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
}

.trust-icon i {
    font-size: 32px;
    color: #0ea5e9;
}

.trust-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.trust-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Loan Process Section */
.loan-process {
    min-height: 918px;
    padding: 80px 0;
    background: url('../img/main2-bg.png') no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
}

.loan-process .container {
    width: 100%;
}

.section-title-bar {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 50px;
    padding-left: 24px;
    border-left: 6px solid #2563eb;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-badge {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
}

.process-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    padding: 50px 0 40px;
    background: #1e293b;
    color: #e2e8f0;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-legal {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #334155;
    text-align: left;
}

.footer-legal p {
    font-size: 13px;
    line-height: 1.9;
    color: #94a3b8;
}

.footer-company {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #334155;
    text-align: left;
}

.footer-company p {
    font-size: 14px;
    line-height: 1.9;
    color: #cbd5e1;
}

.copyright {
    font-size: 13px;
    text-align: left;
    color: #64748b;
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.privacy-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.privacy-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.privacy-modal-body p {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.privacy-company {
    font-size: 16px !important;
    font-weight: 700;
    color: #2563eb !important;
    margin-bottom: 20px !important;
}

.privacy-modal-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2563eb;
}

.privacy-modal-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-modal-body ol li {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 12px;
}

.privacy-modal-body ol li strong {
    color: #1e293b;
}

.privacy-note {
    font-size: 13px;
    color: #64748b;
    display: block;
    margin-top: 4px;
}

.privacy-warning {
    background: #fef2f2;
    padding: 14px 16px;
    border-radius: 8px;
    color: #dc2626 !important;
    font-size: 13px !important;
    border-left: 4px solid #dc2626;
}

.privacy-info {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.privacy-info p {
    font-size: 13px !important;
    margin-bottom: 8px !important;
    color: #64748b !important;
}

.privacy-info p:last-child {
    margin-bottom: 0 !important;
}

.privacy-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.btn-privacy-agree {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-privacy-agree:hover {
    background: #1d4ed8;
}

.privacy-link {
    text-decoration: underline;
    cursor: pointer;
}

.privacy-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .privacy-modal-content {
        max-height: 90vh;
    }

    .privacy-modal-header {
        padding: 16px 20px;
    }

    .privacy-modal-header h3 {
        font-size: 18px;
    }

    .privacy-modal-body {
        padding: 20px;
    }

    .privacy-modal-body p,
    .privacy-modal-body ol li {
        font-size: 13px;
    }

    .privacy-modal-footer {
        padding: 14px 20px;
    }

    .btn-privacy-agree {
        width: 100%;
        padding: 14px;
    }
}

/* Alert Messages */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    z-index: 999;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1200px;
    width: 95%;
}

.fixed-bottom-bar.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.bottom-bar-inner {
    display: grid;
    grid-template-columns: 1fr;
}

.bottom-form-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 30px;
    gap: 0;
}

.bottom-form-section.dark {
    background: #1e3a5f;
}

.bottom-form-section.light {
    background: #f1f5f9;
}

.section-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-header {
    margin-bottom: 8px;
}

.section-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bottom-form-section.dark .section-header h4 {
    color: #fff;
}

.bottom-form-section.light .section-header h4 {
    color: #1e293b;
}

.section-desc {
    font-size: 12px;
    margin: 0;
}

.bottom-form-section.dark .section-desc {
    color: #94a3b8;
}

.bottom-form-section.light .section-desc {
    color: #64748b;
}

.bottom-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-inputs {
    display: flex;
    gap: 8px;
}

.bottom-form input[type="text"],
.bottom-form input[type="tel"] {
    padding: 10px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-family: 'Pretendard', sans-serif;
    min-width: 0;
    flex: 1;
    width: 100px;
}

.bottom-form-section.dark .bottom-form input {
    background: #2d4a6f;
    border: none;
    color: #fff;
}

.bottom-form-section.dark .bottom-form input::placeholder {
    color: #94a3b8;
}

.bottom-form-section.light .bottom-form input {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.bottom-form-section.light .bottom-form input::placeholder {
    color: #94a3b8;
}

.bottom-form input:focus {
    outline: none;
}

.bottom-form-section.dark .bottom-form input:focus {
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.5);
}

.bottom-form-section.light .bottom-form input:focus {
    border-color: #2563eb;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    cursor: pointer;
}

.bottom-form-section.dark .checkbox-inline {
    color: #94a3b8;
}

.bottom-form-section.light .checkbox-inline {
    color: #64748b;
}

.checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

.btn-vertical {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    line-height: 1.4;
    transition: all 0.3s;
    background: #2563eb;
    color: #fff;
    width: 100%;
    margin-top: 8px;
}

.btn-vertical:hover {
    background: #1d4ed8;
}

.btn-vertical.blue {
    background: #2563eb;
}

.btn-vertical.blue:hover {
    background: #1d4ed8;
}

/* Footer padding for fixed bar */
.footer {
    padding-bottom: 240px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-info-card {
        max-width: 420px;
        padding: 24px 28px;
    }

    .hero-info-card .amount {
        font-size: 36px;
    }

    .hero-info-card .rate-text strong {
        font-size: 20px;
    }

    .product-header h2 {
        font-size: 46px;
    }

    .hero-checklist {
        max-width: 420px;
    }

    .hero-checklist li {
        font-size: 17px;
    }

    .bottom-form-section {
        padding: 16px 20px;
    }

    .section-header h4 {
        font-size: 16px;
    }

    .bottom-form input[type="text"],
    .bottom-form input[type="tel"] {
        padding: 10px 14px;
        font-size: 13px;
    }

    .btn-vertical {
        padding: 16px 24px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 24px;
    }

    /* Header Tablet */
    .header-inner {
        height: 60px;
    }

    .header-left {
        gap: 12px;
    }

    .logo-img {
        height: 36px;
    }

    .reg-number {
        font-size: 14px;
    }

    .btn-phone {
        padding: 0;
        font-size: 18px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
        background-size: cover;
    }

    .hero .container {
        height: auto;
    }

    .hero-text {
        max-width: 100%;
        padding-top: 0;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-info-card {
        max-width: 100%;
    }

    .hero-info-card .amount {
        font-size: 32px;
    }

    .hero-info-card .rate-text strong {
        font-size: 18px;
    }

    .product-header h2 {
        font-size: 40px;
    }

    .hero-checklist {
        max-width: 100%;
    }

    .hero-checklist li {
        font-size: 16px;
    }

    .product-info {
        padding: 70px 0;
    }

    .product-header h2 {
        font-size: 36px;
    }

    .info-row {
        padding: 20px 24px;
    }

    .info-label {
        width: 120px;
        font-size: 15px;
    }

    .info-content {
        font-size: 15px;
    }

    .fixed-bottom-bar {
        width: 95%;
        bottom: 16px;
    }

    .bottom-bar-inner {
        grid-template-columns: 1fr;
    }

    .bottom-form-section {
        flex-direction: column;
        padding: 18px 20px;
        gap: 0;
    }

    .section-content {
        width: 100%;
        gap: 10px;
    }

    .section-header {
        margin-bottom: 10px;
    }

    .section-header h4 {
        font-size: 16px;
    }

    .section-desc {
        font-size: 12px;
    }

    .form-inputs {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .bottom-form input[type="text"],
    .bottom-form input[type="tel"] {
        flex: 1;
        min-width: 0;
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    .btn-vertical {
        padding: 10px 18px;
        font-size: 13px;
        width: 100%;
        margin-top: 4px;
    }

    .footer {
        padding-bottom: 280px;
    }

    .loan-process {
        min-height: auto;
        padding: 60px 0;
        background-size: cover;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title-bar {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .process-card {
        padding: 24px;
    }

    .step-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .process-card p {
        font-size: 14px;
    }

    /* Trust Section Tablet */
    .trust-section {
        padding: 80px 0;
    }

    .trust-header h2 {
        font-size: 40px;
    }

    .trust-subtitle {
        font-size: 16px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .trust-card {
        padding: 40px 30px;
    }

    .trust-icon {
        width: 70px;
        height: 70px;
    }

    .trust-icon i {
        font-size: 28px;
    }

    .trust-card h3 {
        font-size: 20px;
    }

    .trust-card p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile - 2줄 배치 */
    .header-inner {
        height: auto;
        padding: 12px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .header-left {
        gap: 8px;
        width: 100%;
    }

    .logo-img {
        height: 32px;
    }

    .reg-number {
        font-size: 13px;
    }

    .btn-phone {
        padding: 0;
        font-size: 16px;
        gap: 4px;
        width: 100%;
        justify-content: center;
    }

    .btn-phone i {
        font-size: 14px;
    }

    /* Hero Mobile - 중앙 정렬 */
    .hero {
        padding: 120px 0 50px;
        background: url('../img/main-bg-m.png') no-repeat center top;
        background-size: cover;
    }

    .hero .container {
        display: flex;
        justify-content: center;
    }

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

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .hero-info-card {
        padding: 20px 24px;
        max-width: 100%;
        text-align: center;
    }

    .hero-info-card .info-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-info-card .label {
        font-size: 12px;
        padding: 5px 10px;
    }

    .hero-info-card .amount {
        font-size: 26px;
    }

    .hero-info-card .suffix {
        font-size: 15px;
    }

    .hero-info-card .rate-text {
        font-size: 15px;
    }

    .hero-info-card .rate-text strong {
        font-size: 16px;
    }

    .hero-checklist {
        padding: 20px 22px;
        max-width: 100%;
    }

    .hero-checklist li {
        font-size: 14px;
        padding: 10px 0;
        justify-content: flex-start;
    }

    .hero-checklist li i {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    /* Product Info Mobile */
    .product-info {
        padding: 60px 0;
        background: url('../img/main3-bg-m.png') no-repeat center center;
        background-size: cover;
    }

    .product-header h2 {
        font-size: 28px;
    }

    .product-subtitle {
        font-size: 15px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 20px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }

    .info-icon i {
        font-size: 16px;
    }

    .info-label {
        width: auto;
        font-size: 14px;
    }

    .info-content {
        font-size: 14px;
        width: 100%;
    }

    .limit-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* Loan Process Mobile */
    .loan-process {
        padding: 50px 0;
        background: url('../img/main2-bg-m.png') no-repeat center center;
        background-size: cover;
    }

    .section-title-bar {
        font-size: 26px;
        margin-bottom: 24px;
        padding-left: 16px;
        border-left-width: 5px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-card {
        padding: 20px;
    }

    .step-badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .process-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .process-card p {
        font-size: 14px;
    }

    .limit-tag {
        font-size: 12px;
        padding: 5px 12px;
        min-width: auto;
    }

    .limit-value {
        font-size: 14px;
    }

    /* Trust Section Mobile */
    .trust-section {
        padding: 60px 0;
        background: url('../img/main2-bg-m.png') no-repeat center center;
        background-size: cover;
    }

    .trust-header {
        margin-bottom: 40px;
    }

    .trust-header h2 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .trust-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-card {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .trust-icon i {
        font-size: 24px;
    }

    .trust-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .trust-card p {
        font-size: 14px;
    }

    .footer-legal p,
    .footer-company p {
        font-size: 12px;
    }

    /* Fixed bottom bar mobile */
    .fixed-bottom-bar {
        bottom: 10px;
        border-radius: 12px;
        width: 94%;
    }

    .bottom-form-section {
        padding: 16px;
        gap: 0;
        flex-direction: column;
    }

    .section-content {
        width: 100%;
        gap: 8px;
    }

    .section-header {
        margin-bottom: 8px;
    }

    .section-header h4 {
        font-size: 15px;
        margin-bottom: 0;
    }

    .section-desc {
        font-size: 11px;
        display: block;
    }

    .bottom-form {
        gap: 8px;
        width: 100%;
    }

    .form-inputs {
        width: 100%;
        gap: 6px;
        display: flex;
        flex-wrap: nowrap;
    }

    .bottom-form input[type="text"],
    .bottom-form input[type="tel"] {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
        flex: 1;
        min-width: 0;
    }

    /* 한도 조회 폼 - 3개 입력 필드 */
    .bottom-form-section.light .form-inputs input {
        padding: 10px 12px;
        font-size: 12px;
    }

    .btn-vertical {
        padding: 9px 16px;
        font-size: 12px;
        border-radius: 6px;
        width: 100%;
        line-height: 1.3;
        margin-top: 4px;
    }

    .checkbox-inline {
        font-size: 11px;
    }

    .checkbox-inline input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .footer {
        padding-bottom: 280px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    /* Header extra small */
    .header-inner {
        height: auto;
        padding: 10px 0;
        gap: 8px;
    }

    .header-left {
        gap: 6px;
    }

    .logo-img {
        height: 16px;
    }

    .reg-number {
        font-size: 16px;
    }

    .btn-phone {
        padding: 0;
        font-size: 18px;
    }

    .btn-phone i {
        font-size: 18px;
    }

    /* Hero extra small */
    .hero {
        padding: 110px 0 40px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-info-card {
        padding: 18px 20px;
    }

    .hero-info-card .label {
        font-size: 11px;
        padding: 4px 8px;
    }

    .hero-info-card .amount {
        font-size: 22px;
    }

    .hero-info-card .suffix {
        font-size: 14px;
    }

    .hero-info-card .rate-text {
        font-size: 14px;
    }

    .hero-info-card .rate-text strong {
        font-size: 15px;
    }

    .hero-checklist {
        padding: 18px 20px;
    }

    .hero-checklist li {
        font-size: 13px;
        padding: 8px 0;
        gap: 10px;
    }

    .hero-checklist li i {
        font-size: 13px;
    }

    /* Bottom bar extra small */
    .fixed-bottom-bar {
        bottom: 8px;
        width: 96%;
    }

    .bottom-form-section {
        padding: 14px;
        gap: 0;
    }

    .section-header h4 {
        font-size: 14px;
    }

    .section-desc {
        font-size: 10px;
    }

    /* 빠른 상담: 이름, 연락처 - 한 줄에 표시 */
    .bottom-form-section.dark .form-inputs {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .bottom-form-section.dark .form-inputs input {
        flex: 1;
        min-width: 0;
        padding: 9px 12px;
        font-size: 12px;
    }

    /* 한도 조회: 이름, 차량번호, 연락처 - 3개 한 줄에 표시 */
    .bottom-form-section.light .form-inputs {
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
    }

    .bottom-form-section.light .form-inputs input {
        flex: 1;
        min-width: 0;
        padding: 9px 10px;
        font-size: 11px;
    }

    .btn-vertical {
        padding: 8px 14px;
        font-size: 11px;
        width: 100%;
    }

    .checkbox-inline {
        font-size: 10px;
        gap: 4px;
    }

    .checkbox-inline input[type="checkbox"] {
        width: 13px;
        height: 13px;
    }

    .footer {
        padding-bottom: 280px;
    }
}
