.page-hero {
    position: relative;
    margin-top: var(--header-h-m);
    background: linear-gradient(135deg, #1b5daa 0%, #14478a 50%, #0e3566 100%);
    padding: 56px 0 48px;
    overflow: hidden;
    text-align: center;
}

.page-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ph-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.ph-s1 {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    top: -80px;
    right: -60px;
}

.ph-s2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.03);
    bottom: -40px;
    left: -40px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.steps-section {
    padding: 56px 0 64px;
    background: var(--bg-white);
}

.steps-flow {
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.step-card:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--border);
    z-index: 1;
}

.step-visual {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-badge {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-badge svg {
    width: 44px;
    height: 44px;
}

.step-badge-num {
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    letter-spacing: 0.05em;
}

.sb-1 {
    background: linear-gradient(135deg, #e8f0fa, #d0e2f7);
}

.sb-2 {
    background: linear-gradient(135deg, #e8faf0, #d0f2e4);
}

.sb-3 {
    background: linear-gradient(135deg, #fff5e8, #f5e8d0);
}

.step-body {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.step-methods {
    display: grid;
    gap: 12px;
}

.method-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.method-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.method-content {
    flex: 1;
}

.method-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.method-detail {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.method-phone {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-top: 4px;
}

.docs-section {
    background: var(--bg-light);
    padding: 56px 0 64px;
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.doc-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.doc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.doc-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-card-icon.personal {
    background: #e8f0fa;
}

.doc-card-icon.corporate {
    background: #fff5e8;
}

.doc-card-icon svg {
    width: 20px;
    height: 20px;
}

.doc-card-type {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.doc-list {
    display: grid;
    gap: 8px;
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.7;
}

.doc-check {
    flex-shrink: 0;
    margin-top: 4px;
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.doc-note {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 4px;
    font-style: italic;
}

.doc-sub-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 16px 0 8px;
}

.bank-section {
    padding: 56px 0 64px;
    background: var(--bg-white);
}

.bank-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.bank-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 14px;
}

.bank-table thead {
    background: var(--primary);
}

.bank-table th {
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    white-space: nowrap;
}

.bank-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    vertical-align: top;
}

.bank-table tbody tr:hover {
    background: var(--primary-lightest);
}

.bank-table .type-cell {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.bank-notes {
    max-width: 900px;
    margin: 16px auto 0;
    display: grid;
    gap: 6px;
}

.bank-note {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.bank-note::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
}

.cta-section {
    background: var(--primary);
    padding: 56px 0;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.cta-phone {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-phone a {
    color: #fff;
    text-decoration: none;
}

.cta-hours {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px){
    .container {
        padding: 0 32px;
    }

    .hero-cta-row {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-hero-title {
        font-size: 34px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1024px){
    .page-hero {
        margin-top: var(--header-h-d);
        padding: 72px 0 56px;
    }

    .steps-section {
        padding: 72px 0 80px;
    }

    .docs-section {
        padding: 72px 0 80px;
    }

    .bank-section {
        padding: 72px 0 80px;
    }

    .step-visual {
        width: 120px;
    }

    .step-badge {
        width: 96px;
        height: 96px;
    }

    .step-badge svg {
        width: 52px;
        height: 52px;
    }

    .section-title {
        font-size: 30px;
    }

    .page-hero-title {
        font-size: 38px;
    }
}

@media (min-width: 1280px){
    .container {
        padding: 0 40px;
    }
}